Skip to content

2025 01 02

2025 01 02 #107

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.13
architecture: x64
- run: pip install .[test]
- run: black --check *.py */
- run: isort --check-only *.py */
- run: flake8