Added unit test scripts to CI GitHub workflow. #1
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
| on: push | |
| jobs: | |
| Scripts: | |
| name: "Unit Test Scripts" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Lua | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y lua5.4 | |
| - uses: actions/checkout@v4 | |
| - name: Run script unit tests | |
| run: | | |
| find test -name test.sh -executable -print -execdir ./{} \; |