Skip to content

Public release

Public release #1

Workflow file for this run

name: Python
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
python -m pip install --upgrade pip
python install_requirements.py
- name: Lint
run: ruff --show-source .
- name: Type Check
run: mypy .
- name: Formatting
run: black --check --diff .
- name: Imports Formatting
run: isort --check --diff .