Initial commit

This commit is contained in:
2026-03-26 17:59:56 +11:00
committed by Woodburn
commit d8ede00901
19 changed files with 1396 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
name: Check Code Quality
run-name: Ruff CI
on:
push:
jobs:
RuffCheck:
runs-on: [ubuntu-latest, amd]
steps:
- uses: actions/checkout@v2
- name: Set up Python
run: |
apt update
apt install -y python3 python3-pip
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check .