2023-03-09 11:57:21 +09:00
|
|
|
name: GitHub Actions Check
|
|
|
|
run-name: ${{ github.actor }} Checks 🚀
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
Link-Format-Checks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-24 19:14:34 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-09 11:57:21 +09:00
|
|
|
- run: scripts/link-format-chk.sh
|
|
|
|
Build-Table-Checks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-24 19:14:34 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-09 11:57:21 +09:00
|
|
|
- run: scripts/buildtable.pl >/tmp/table.mediawiki || exit 1
|
|
|
|
Diff-Checks:
|
2024-04-24 19:16:30 -04:00
|
|
|
name: "Diff Checks (fails until number assignment)"
|
2023-03-09 11:57:21 +09:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-24 19:14:34 -04:00
|
|
|
- uses: actions/checkout@v4
|
2024-04-24 19:06:23 -04:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2023-03-09 11:57:21 +09:00
|
|
|
- run: scripts/diffcheck.sh
|
2024-07-25 16:20:55 -03:00
|
|
|
Typo-Checks:
|
|
|
|
name: "Typo Checks"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Actions Repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Check spelling
|
|
|
|
uses: crate-ci/typos@master
|