Skip to content

Merge origin/main — resolve conflicts in favour of our improvements #36

Merge origin/main — resolve conflicts in favour of our improvements

Merge origin/main — resolve conflicts in favour of our improvements #36

Workflow file for this run

name: Tests
on:
push:
branches: ["**"]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: pip install -r tests/requirements.txt
- name: Run tests
run: pytest