Skip to content

fix github actions

fix github actions #17

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Python 3
uses: actions/[email protected]
with:
python-version: 3.8
- name: Install dev dependencies
run:
pip install .[dev]
- name: Lint
run: tox -e lint
- name: Type checking
run: tox -e type