Skip to content

UPD: version

UPD: version #23

Workflow file for this run

name: testing & quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
qa:
name: linting and tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.10" ]
steps:
- name: check out code
uses: actions/checkout@v4
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: install package with dev dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
# - name: ruff lint
# run: ruff check examples src tests
# - name: ruff format check
# run: ruff format --check examples src tests
# - name: run tests
# run: pytest -q