Files
op25-docker/.gitea/workflows/lint.yml
Logan Cusano 017b73bd1b
Some checks failed
Lint / lint (push) Has been cancelled
Init commit
2025-10-19 02:37:00 -04:00

30 lines
501 B
YAML

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run Lint
run: |
flake8 --max-line-length=88 --ignore=E203,E302,E501 .