Skip to content

ci(dependabot): bump the github-actions group with 3 updates #59

ci(dependabot): bump the github-actions group with 3 updates

ci(dependabot): bump the github-actions group with 3 updates #59

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Test py${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install tox tox-gh-actions
- name: Test
run: tox -e py
- name: Coverage
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0