Skip to content

Tidy up

Tidy up #15

Workflow file for this run

name: Tests
on: push
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]
pytest-suite:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
run: docker-compose up --build
- name: Run pytest
run: docker-compose run --entrypoint '/bin/bash -lc' app 'pytest tests'