Make flake8 work with Python 3.12 #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dirac tests | |
on: | |
push: | |
# Run tests only if dirac code is changed or workflow is triggerd manually | |
paths: | |
- '**dirac**' | |
workflow_dispatch: | |
jobs: | |
dirac_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull images | |
run: docker compose -f tests_dirac/docker-compose.yml pull | |
- name: Build images | |
run: docker compose -f tests_dirac/docker-compose.yml build | |
- name: Run dirac tests | |
timeout-minutes: 15 | |
run: docker compose -f tests_dirac/docker-compose.yml run test |