Files
Nathanwoodburn.github.io/.gitea/workflows/check.yml
Nathan Woodburn 0c490625a9
All checks were successful
Build Docker / BuildImage (push) Successful in 47s
Check Code Quality / RuffCheck (push) Successful in 58s
fix: Add apt update before install python
2025-10-30 20:39:27 +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 .