Skip to content

CI running mypy and ruff #17

CI running mypy and ruff

CI running mypy and ruff #17

Workflow file for this run

name: Pipeline

Check failure on line 1 in .github/workflows/pipeline.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pipeline.yaml

Invalid workflow file

`tag` is not a valid event name
on: [tag]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.11.1'
- name: Install poetry
run: pipx install --python python3.11 poetry
- name: Install dependencies
run: poetry install
- name: Check ruff
run: poetry run ruff .
- name: Mypy check
run: poetry run mypy .