Skip to content

build(tox): test in PyPy3.9 #71

build(tox): test in PyPy3.9

build(tox): test in PyPy3.9 #71

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@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