Skip to content

Contributing guidelines #516

Contributing guidelines

Contributing guidelines #516

Workflow file for this run

name: Test & Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.12"]
steps:
# Python & dependency installation
- uses: actions/checkout@v2
- name: setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.5
- name: install dependencies
run: poetry install
- name: lint with ruff
run: poetry run ruff src tests
- name: lint with mypy
run: poetry run mypy src
- name: pytest
run: poetry run pytest