Optimization for unused DataStack tags #177
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: Bootstrap Test | |
| description: Tests parser bootstrapping with different configurations to ensure output consistency | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| bootstrap-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run bootstrap test | |
| run: | | |
| cd scripts | |
| chmod +x ./bootstrap_test.sh | |
| ./bootstrap_test.sh true | |
| if [ $? -ne 0 ]; then | |
| exit 1 | |
| fi | |
| working-directory: ${{ github.workspace }} |