Skip to content

build(deps-dev): update ruff requirement from 0.6.1 to 0.6.2 #746

build(deps-dev): update ruff requirement from 0.6.1 to 0.6.2

build(deps-dev): update ruff requirement from 0.6.1 to 0.6.2 #746

Workflow file for this run

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