Bump pytest from 8.3.3 to 8.3.4 #336
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: Continuous Integration | |
on: [ push, pull_request ] | |
jobs: | |
tests: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: make run-tests | |
- name: Run black | |
run: make check-black | |
- name: Run isort | |
run: make check-isort | |
- name: Run flake8 | |
run: make flake8 | |
- name: Stop containers | |
run: make stop-tests |