Skip to content

Optimization for unused DataStack tags #177

Optimization for unused DataStack tags

Optimization for unused DataStack tags #177

Workflow file for this run

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 }}