Skip to content

Update to use new API, linting CI, cleanup #2

Update to use new API, linting CI, cleanup

Update to use new API, linting CI, cleanup #2

Workflow file for this run

---
name: "Test"
on:
pull_request:
push:
branches:
- "main"
jobs:
lint:
name: "Lint"
runs-on: "ubuntu-22.04"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Set up Python"
uses: "actions/setup-python@v3"
with:
python-version: "3.8"
- name: "Install tox"
run: |
python -m pip install --upgrade pip
pip install tox
- name: "Run tox"
run: |
tox -e linting