Skip to content

Web: Config file

Web: Config file #339

Workflow file for this run

name: Tests
# Run on pull requests and when merging to main branch
on:
push:
branches:
- main
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install package with test dependencies
run: |
python -m pip install ".[test]"
- name: Run tests
run: |
python -m pytest tests/