add action #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify | |
on: push | |
jobs: | |
static_checks: | |
name: Static Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: bash formatting | |
run: docker run -v "$PWD":/mnt -w /mnt mvdan/shfmt -ci -i 2 -l -d -- *.sh | |
- name: shellcheck | |
run: docker run -v "$PWD":/mnt -w /mnt koalaman/shellcheck -- *.sh test/*.bats | |
- name: misc files formatting | |
run: docker run -v "$PWD":/mnt -w /mnt tmknom/prettier --check . | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Setup BATS | |
uses: mig4/setup-bats@v1 | |
- name: Run Tests | |
run: bats --trace --print-output-on-failure test/ | |
self_check: | |
name: Run this Action | |
runs-on: ubuntu-latest | |
needs: [static_checks, tests] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
with: | |
command: greet | |
who: world | |
- uses: ./ | |
id: error_step | |
continue-on-error: true | |
with: | |
command: error | |
- name: ensure error command failed | |
if: steps.error_step.outcome == 'success' | |
run: exit 1 |