diff options
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 421cfb2..afa4896 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,16 +5,14 @@ jobs: 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: shellcheck uses: ludeeus/action-shellcheck@0.1.0 - + + - name: Install BATS + run: sudo npm install -g bats + - name: Test - run: cd tests && bats *.bats
\ No newline at end of file + run: cd tests && bats *.bats |
