Skip to content

Update ruff requirement from 0.6.5 to 0.6.6 #151

Update ruff requirement from 0.6.5 to 0.6.6

Update ruff requirement from 0.6.5 to 0.6.6 #151

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", "3.13"]
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 }}
allow-prereleases: true
- run: python -Im pip install nox==2024.4.15 poetry==1.8.3
- run: python -Im nox --python ${{ matrix.python-version }}
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}