fix: issue solved in the configurations op #164
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 analisys | |
on: [push, pull_request] | |
jobs: | |
prospector: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
pip install prospector[with_everything]==1.10.3 | |
pip install . | |
- name: Analysing the code with prospector | |
run: | | |
source venv/bin/activate | |
prospector | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mypy | |
pip install . | |
- name: Running static types with mypy | |
run: | | |
mypy flamapy --no-namespace-packages | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flamapy-fm | |
pip install . | |
pip install pytest==5.4.3 | |
sudo add-apt-repository universe | |
sudo apt update | |
sudo apt install graphviz -y | |
pip install graphviz | |
- name: Running test | |
run: | | |
python -m pytest |