Skip to content

docs: update readme

docs: update readme #5

Workflow file for this run

name: Build Python Project
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_dev.txt
- name: Check isort
uses: isort/isort-action@v1
- name: Check black
run: |
black --check --diff .
- name: Check pylint
run: |
pylint $(git ls-files '20*/*.py')
- name: Test with pytest
run: |
pytest