Help text: explain that moving a file does not change its properties #219
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 | |