From 7889ff6774fa26fdc9b069455037abe553350a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Mei=C3=9Felbach?= Date: Thu, 28 Nov 2019 23:03:13 +0100 Subject: Add bats.yml workflow to test things out --- .github/workflows/bats.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/bats.yml 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 -- cgit v1.2.3