Skip to content

fix(ci): relax ruff to errors-only (E9/F63/F7/F82) #30

fix(ci): relax ruff to errors-only (E9/F63/F7/F82)

fix(ci): relax ruff to errors-only (E9/F63/F7/F82) #30

Workflow file for this run

name: Repository Health
on:
pull_request:
push:
branches: [ main, master ]
permissions:
contents: read
jobs:
repository-health:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Verify governance files
run: |
test -f README.md || test -f SKILL.md || { echo "README.md or SKILL.md is required"; exit 1; }
test -f LICENSE || { echo "LICENSE is required"; exit 1; }
test -f .github/CODEOWNERS || { echo ".github/CODEOWNERS is required"; exit 1; }