Skip to content

Release v1.0.0

Release v1.0.0 #153

Workflow file for this run

name: lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install development dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Check dependency alignment
run: |
python scripts/check_dependency_sync.py
- name: Lint with flake8
run: |
flake8 --config=.flake8