Initial commit #1
Workflow file for this run
This file contains 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
# this github actions will run the tests/TESTS_RUNNER.sh script and fail if any of the tests fail. | |
name: SH Tests runner | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 #checkout into the repository | |
- name: Run the TEST_RUNNER.sh script | |
run: ./tests/TESTS_RUNNER.sh # run the TESTS_RUNNER.sh script |