merge develop -> master #441
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 application | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Setup repo | |
run: | | |
make setup_repo | |
- name: Update Python tools | |
run: | | |
bash -c "source .venv/bin/activate && python -m pip install --upgrade pip" | |
- name: Install dependencies | |
run: | | |
bash -c "source .venv/bin/activate && make setup_pipeline" | |
- name: Lint with flake8 | |
run: | | |
bash -c "source .venv/bin/activate && make flake8" | |
- name: Test | |
run: | | |
bash -c "source .venv/bin/activate && make verify_commit" |