From 90db7cc7c3e10d4e6bbd2c1b9887e345b993ec80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Mei=C3=9Felbach?= Date: Thu, 28 Nov 2019 23:13:27 +0100 Subject: Try shellcheck --- .github/workflows/bats.yml | 18 ------------------ .github/workflows/ci.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows/bats.yml create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/bats.yml b/.github/workflows/bats.yml deleted file mode 100644 index 2294530..0000000 --- a/.github/workflows/bats.yml +++ /dev/null @@ -1,18 +0,0 @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..278906f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: "CI" +on: [push, pull_request] +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + - name: shellcheck + uses: ludeeus/action-shellcheck@0.1.0 + - 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