automated update: 2026-06-10 20:51:44

This commit is contained in:
root
2026-06-10 20:51:44 -04:00
parent f9a7338f9b
commit da2c58ae8d
4 changed files with 56 additions and 12 deletions
+20
View File
@@ -0,0 +1,20 @@
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