Skip to content

chore(deps): update dependency perl to v5.41.8 #74

chore(deps): update dependency perl to v5.41.8

chore(deps): update dependency perl to v5.41.8 #74

Workflow file for this run

---
name: test-python
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
# Test latest python on Windows / macOS
- { os: 'windows-latest', python-version: '3.13' }
- { os: 'macos-latest', python-version: '3.13' }
os: ['ubuntu-latest']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.9', 'pypy3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install tox tox-gh-actions codecov
- name: Test with tox
working-directory: ./python
run: |
tox
- name: Gather codecov report
working-directory: ./python
run: |
codecov