Skip to content

Bump ruff from 0.7.1 to 0.7.2 #673

Bump ruff from 0.7.1 to 0.7.2

Bump ruff from 0.7.1 to 0.7.2 #673

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
build:
strategy:
fail-fast: false
matrix:
# os: [ ubuntu-latest, windows-latest ]
os: [ ubuntu-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10" ]
runs-on: ${{ matrix.os }}
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 dependencies
run: |
pip install -U poetry
poetry install -E all
- name: Unit tests
run: poetry run pytest tests --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml