diff options
| author | merakor <cem@ckyln.com> | 2021-02-04 18:25:29 +0000 | 
|---|---|---|
| committer | merakor <cem@ckyln.com> | 2021-02-04 18:25:29 +0000 | 
| commit | 7b513542aef2df70a0f39bbae9318ff86859035a (patch) | |
| tree | 15adb77d3afc57adc5ff29bff6df3ab28db31dcd | |
| parent | 55d6638c685877dbab7f788ff58d14299df88666 (diff) | |
| download | cpt-7b513542aef2df70a0f39bbae9318ff86859035a.tar.gz | |
GitHub actions: fix workflows
FossilOrigin-Name: 8e2bc2c414caf29041b0a2e85e0701f0c8197d72004c88e58af658a04852e754
| -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 | 
