mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
23 lines
492 B
YAML
23 lines
492 B
YAML
name: Wiki Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run wiki style enforcement
|
|
run: |
|
|
bash tools/wiki/enforce_wiki_style.sh
|
|
|
|
- name: Fix wiki style
|
|
if: github.event_name == 'pull_request'
|
|
run: |
|
|
bash tools/wiki/enforce_wiki_style.sh --fix
|
|
git diff --exit-code || echo "Wiki style changes made, please review"
|