Skip to content

Try to switch to PyPi trusted publisher. #100

Try to switch to PyPi trusted publisher.

Try to switch to PyPi trusted publisher. #100

Workflow file for this run

name: Check Linting
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- uses: abatilo/actions-poetry@v2
- name: Install
run: |
poetry install
- name: Lint
run: |
poetry run black src --check --diff
poetry run isort -c src
poetry run mypy src
poetry run ruff src
poetry run pyright src