build(version): bump to 0.19.1 #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint-and-type | |
on: [push, pull_request] | |
jobs: | |
lint-and-type: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install poethepoet poetry | |
poetry install | |
- name: Format | |
run: poe format | |
- name: Check spelling | |
run: poe codespell | |
- name: Lint | |
run: poe lint | |
- name: Typecheck | |
run: poe type |