aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/bats.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/bats.yml b/.github/workflows/bats.yml
new file mode 100644
index 0000000..2294530
--- /dev/null
+++ b/.github/workflows/bats.yml
@@ -0,0 +1,18 @@
+name: "BATS"
+on: [push, pull_request]
+jobs:
+ build:
+ name: build
+ runs-on: ubuntu-latest
+ steps:
+
+ - name: Setup BATS
+ uses: mig4/setup-bats@master
+ with:
+ bats-version: 1.1.0
+
+ - name: Check out code
+ uses: actions/checkout@v1
+
+ - name: Test
+ run: cd tests && bats *.bats \ No newline at end of file