Files
winnow/.github/workflows/lint.yml
T

21 lines
372 B
YAML

name: Lint Python
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Ruff
uses: astral-sh/ruff-action@v3
with:
args: "check" # Can change to "check --fix" to automatically fix issues