Skip to content

Python versions & testing OS's #131

Python versions & testing OS's

Python versions & testing OS's #131

Workflow file for this run

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