Skip to content

fix: updating actions #384

fix: updating actions

fix: updating actions #384

Workflow file for this run

name: Python analysis
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Installing depencencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install .
- name: Installing Ruff linter
run: |
pip install ruff
- name: Running Ruff linter
run: |
ruff check .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Installing depencencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install .
- name: Installing mypy
run: |
pip install mypy
- name: Running static types with mypy
run: |
mypy -p flamapy
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Installing depencencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install .
- name: Installing pytest
run: |
pip list
pip install pytest
- name: Running tests
run: |
pytest