Skip to content

🐛 fix versioning #72

🐛 fix versioning

🐛 fix versioning #72

name: Run static analysis and unit tests
on: push
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: Static analysis
run: |
poetry run poe lint
- name: Unit tests
run: |
poetry run poe test