version 0.0.43 #534
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 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9. | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install Dependencies. | |
run: | | |
python -m pip install --upgrade pip | |
pip install --requirement requirements.txt | |
pip install --upgrade --editable . | |
- name: Analysing the code with pylint. | |
# https://github.com/actions/starter-workflows/issues/636 | |
run: make lint | |
- name: Analysing the code with flake8. | |
run: make flake | |
- name: Run doctests and unittest with pytest | |
run: make unittest | |