Skip to content

build(deps-dev): update ruff requirement (#277) #674

build(deps-dev): update ruff requirement (#277)

build(deps-dev): update ruff requirement (#277) #674

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install nox==2023.4.22 poetry==1.7.0
- run: nox --python ${{ matrix.python-version }}
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}