Skip to content

brenkao is linting the package #799

brenkao is linting the package

brenkao is linting the package #799

Workflow file for this run

name: lint
run-name: ${{ github.actor }} is linting the package
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up Python Environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
uses: snok/install-poetry@v1.3.1
- name: Install dependencies
run: poetry install --with dev,examples --all-extras
- name: Run Ruff
run: poetry run ruff check .
- name: Run MyPy
run: poetry run mypy .