mirror of
https://github.com/bitcoin/bips.git
synced 2026-02-23 15:38:22 +00:00
replace travis with Github Actions (#1432)
replace travis with Github Actions
This commit is contained in:
19
.github/workflows/github-action-checks.yml
vendored
Normal file
19
.github/workflows/github-action-checks.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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@v3
|
||||
- run: scripts/link-format-chk.sh
|
||||
Build-Table-Checks:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: scripts/buildtable.pl >/tmp/table.mediawiki || exit 1
|
||||
Diff-Checks:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: scripts/diffcheck.sh
|
||||
Reference in New Issue
Block a user