Catch 403 with (un)stage and explain possible causes #155
Workflow file for this run
This file contains hidden or 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: Unit Tests | |
| permissions: | |
| contents: read | |
| on: [push] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Checkout shell test framework shUnit2 | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: kward/shunit2 | |
| path: ${{github.workspace}}/tests/shunit2 | |
| fetch-depth: 1 | |
| - name: Run unit tests | |
| shell: bash | |
| run: | | |
| export PATH="tests/shunit2:$PATH" | |
| tests/unit_test.sh | |