Skip to content

Change GH actions linting to use pyinvoke #65

Change GH actions linting to use pyinvoke

Change GH actions linting to use pyinvoke #65

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Remove setuptools"
run: "sudo apt purge python3-setuptools"
- name: "Install package"
run: pip install ".[dev]"
- name: "Run lint checks"
run: invoke lint