Skip to content

ci(github): fix lint-and-type action #13

ci(github): fix lint-and-type action

ci(github): fix lint-and-type action #13

Workflow file for this run

name: lint-and-type
on: [push, pull_request]
jobs:
lint-and-type:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install -y python3-poetry
poetry self add 'poethepoet[poetry_plugin]'
- name: Format
run: poetry poe format
- name: Check spelling
run: poetry poe spell
- name: Lint
run: poetry poe lint
- name: Typecheck
run: poetry poe type