Test Setup Script V2 #2
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 Setup Script V2 | |
| on: | |
| push: | |
| branches: [v2] | |
| pull_request: | |
| branches: [v2] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run test suite V2 | |
| run: | | |
| chmod +x src/setup.sh tests/test-setup-git.sh | |
| bash tests/test-setup-git.sh ./src/setup.sh |