Skip to content

Merge branch 'develop' of https://github.com/ImperialCollegeLondon/Py… #20

Merge branch 'develop' of https://github.com/ImperialCollegeLondon/Py…

Merge branch 'develop' of https://github.com/ImperialCollegeLondon/Py… #20

Workflow file for this run

name: "Build and test"
on:
- push
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: pre-commit/action@v3.0.0
test:
needs: qa
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install -r requirements-dev.txt
- run: pytest tests