diff options
-rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index add1470..b9bcbbe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,8 +5,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Run do - run: ./tools/do + - name: Run make + run: make test: runs-on: ubuntu-latest needs: build @@ -15,6 +15,4 @@ jobs: - name: Install shellspec run: curl -fsSL https://git.io/shellspec | sudo sh -s -- -p /usr/local -y - name: Run tests - run: ./tools/do test - - name: Run shellspec - run: shellspec + run: make test |