Skip to content

Week 3

Week 3 #12

Workflow file for this run

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