Skip to content

GitHub Actions & test fixes, Python versions supported & OS's tested on #136

GitHub Actions & test fixes, Python versions supported & OS's tested on

GitHub Actions & test fixes, Python versions supported & OS's tested on #136

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.9
architecture: x64
cache: pip
- run: pip install .[test]
- run: flake8 .
- run: isort .