Skip to content

Commit

Permalink
ci(github): fix lint-and-type action
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed Oct 15, 2024
1 parent 25e846b commit 28cba9e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/lint-and-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install --upgrade pip
pip install poethepoet poetry
poetry install
apt-get install -y python3-poetry
poetry self add 'poethepoet[poetry_plugin]'
- name: Format
run: poe format
run: poetry poe format
- name: Check spelling
run: poe spell
run: poetry poe spell
- name: Lint
run: poe lint
run: poetry poe lint
- name: Typecheck
run: poe type
run: poetry poe type

0 comments on commit 28cba9e

Please sign in to comment.