Switched column order for feature comparison #13
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
| # Run the `run_tests.sh` script to execute all tests. | |
| name: run_tests | |
| # Run the workflow on pushes and pull requests for the "main" branch, or | |
| # manually. | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| # Set the job to run on the latest Ubuntu OS. | |
| jobs: | |
| run_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Check-out the repository under $GITHUB_WORKSPACE, so the job can | |
| # access it. | |
| - uses: actions/checkout@v4 | |
| # Add the Shell Argparser to $PATH. | |
| - name: set_path | |
| run: pwd >> "$GITHUB_PATH" | |
| # Run the script. | |
| - name: run_tests | |
| shell: bash {0} | |
| working-directory: tests/ | |
| run: ./run_tests.sh |