Skip to content

Add tests workflow

Add tests workflow #2

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
run-linter:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: "pip"
- name: Install
run: pip install -e '.[tests]'
- name: Run tests
run: pytest -v tests