aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Meißelbach <arbelzapf@gmail.com>2019-11-28 23:03:13 +0100
committerMoritz Meißelbach <arbelzapf@gmail.com>2019-11-28 23:03:13 +0100
commit7889ff6774fa26fdc9b069455037abe553350a07 (patch)
treed715af693cd9fd71b355862d29a51e46333a22f9
parent65aaeb48e4d7589c50e13e422442a684f9d5263d (diff)
downloadsway-launcher-desktop-7889ff6774fa26fdc9b069455037abe553350a07.tar.gz
sway-launcher-desktop-7889ff6774fa26fdc9b069455037abe553350a07.zip
Add bats.yml workflow to test things out
-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