downgrade Flask #35
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: Python tests | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build-application: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: make install | |
- name: Install development dependencies (Pytest and Coverage) | |
run: make install-dev | |
- name: Execute unit tests with Pytest | |
run: make tests | |
- name: Analyse coverage report | |
run: make report |