mirror of
https://github.com/bitcoin/bips.git
synced 2025-01-18 21:35:13 +01:00
23 lines
611 B
YAML
23 lines
611 B
YAML
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
|