Skip to content

update README

update README #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8 pytest
- name: Run flake8 (strict)
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Run flake8 (style)
run: |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run pytest
env:
PYTHONPATH: src
run: |
pytest tests/ --verbose