Skip to content

Week 3

Week 3 #9

Workflow file for this run

name: Python tests
on:
push:
branches: [main, week-1, week-2, week-3]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install package and test tools
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run unit tests
run: pytest