Skip to content

Bump the action-dependencies group with 2 updates #1648

Bump the action-dependencies group with 2 updates

Bump the action-dependencies group with 2 updates #1648

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
python-version: ["3.9", "3.12"]
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 tests dependencies
run: python -m pip install tox
- name: run Python tests
run: tox -e tests
- name: upload to codecov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./tests/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}