Add CLI flags to configure.sh for non-interactive usage #1
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: Test configure.sh | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'configure.sh' | |
| - 'scripts/test_configure.sh' | |
| - '.github/workflows/test-configure.yml' | |
| pull_request: | |
| paths: | |
| - 'configure.sh' | |
| - 'scripts/test_configure.sh' | |
| - '.github/workflows/test-configure.yml' | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run configure.sh tests | |
| run: bash scripts/test_configure.sh |