Skip to content

small change

small change #3

Workflow file for this run

name: Run tests
on: push
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# https://github.com/actions/setup-python
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest
# https://github.com/astral-sh/ruff-action
- uses: astral-sh/ruff-action@v3