Files
Nathan Woodburn ae3d99b0e5
Some checks failed
Check Code Quality / RuffCheck (push) Failing after 45s
Build Docker / BuildImage (push) Successful in 55s
feat: Update project to use pyproject
2025-11-20 15:41:23 +11:00

19 lines
369 B
YAML

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 .