Skip to content

Ignore E402 errors

Ignore E402 errors #8

Workflow file for this run

name: Check python syntax
on:
push:
jobs:
ruff:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.9", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set Python Version
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Python Ruff Lint and Format
run: ruff check --output-format=github .