Skip to content

update statistics

update statistics #27

Workflow file for this run

name: Lint and test
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry and pre-commit
run: |
pipx install poetry
pipx install pre-commit
- name: Install dependencies
run: poetry install --no-interaction
- name: Run pre-commit
run: poetry run pre-commit run --all-files
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest scripts/filter.py