summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorkallewoof <kalle.alm@gmail.com>2023-03-09 11:57:21 +0900
committerGitHub <noreply@github.com>2023-03-09 11:57:21 +0900
commitebea569f193577af8be51a48f0838fab38add0a9 (patch)
tree00765ce15cc5bba8d17d007306d81decc0d88523 /.github/workflows
parent4e4db8ba123aa8e9cba8cc4d2f700b9724cb8963 (diff)
downloadbips-ebea569f193577af8be51a48f0838fab38add0a9.tar.xz
replace travis with Github Actions (#1432)
replace travis with Github Actions
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/github-action-checks.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/github-action-checks.yml b/.github/workflows/github-action-checks.yml
new file mode 100644
index 0000000..bfc014b
--- /dev/null
+++ b/.github/workflows/github-action-checks.yml
@@ -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