Skip to content

chore: clean tweaks #73

chore: clean tweaks

chore: clean tweaks #73

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest mypy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Type Chescking the code with mypy
run: |
mypy $(git ls-files '*.py')
- name: Testing with pytest
run: |
pytest