Skip to content

⬆️ Bump ruff from 0.9.2 to 0.9.3 in the dependencies group (#… #353

⬆️ Bump ruff from 0.9.2 to 0.9.3 in the dependencies group (#…

⬆️ Bump ruff from 0.9.2 to 0.9.3 in the dependencies group (#… #353

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install
- name: Lint
env:
RUFF_OUTPUT_FORMAT: github
run: bash scripts/lint.sh
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- name: Install tox
run: pipx install tox
- name: Run Tox
run: tox -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true