Skip to content

bump: version bump to include new types #341

bump: version bump to include new types

bump: version bump to include new types #341

Workflow file for this run

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@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hug prospector[with_everything]
- name: Analysing the code with prospector
run: |
prospector
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Running static types with mypy
run: |
mypy flamapy
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Running test
run: |
python -m pytest