diff options
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 48b29d9..47384aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,13 +1,21 @@ -name: test - +name: main on: [push, pull_request] - jobs: + setup: + runs-on: ubuntu-latest + steps: + - name: Install shellspec + run: curl -fsSL https://git.io/shellspec | sh -s -- -p /usr/local -y build: - runs-on: ubuntu-latest - + needs: setup steps: - uses: actions/checkout@v1 - - name: Run tests. - run: ./tools/do test + - name: Run do + run: ./tools/do + test: + runs-on: ubuntu-latest + needs: build + steps: + - run: ./tools/do test + - run: shellspec |