akarve Checks π #895
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Check | |
run-name: ${{ github.actor }} Checks π | |
on: [push, pull_request] | |
jobs: | |
Link-Format-Checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: scripts/link-format-chk.sh | |
Build-Table-Checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: scripts/buildtable.pl >/tmp/table.mediawiki || exit 1 | |
Diff-Checks: | |
name: "Diff Checks (fails until number assignment)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- run: scripts/diffcheck.sh | |
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 |