Skip to content

ci: Add github actions #1

ci: Add github actions

ci: Add github actions #1

Workflow file for this run

name: Python tests
on:
- push
- pull_request
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: poetry
- name: Install dependencies
run: |
apt install pipx
pipx ensurepath
pipx install poetry==1.8.5
poetry install
- name: Run linters
run: poetry run tox -e lint