Fix exp.volatiles_are_top and exp.globs_are_top in relational (apron)… #12261
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: options | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate-conf: | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 14 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install ajv-cli | |
| run: npm install -g ajv-cli | |
| - name: Migrate schema # https://github.com/ajv-validator/ajv-cli/issues/199 | |
| run: ajv migrate -s src/config/options.schema.json | |
| - name: Validate conf | |
| run: ajv validate -s src/config/options.schema.json -d "conf/**/*.json" | |
| - name: Validate incremental tests | |
| run: ajv validate -s src/config/options.schema.json -d "tests/incremental/*/*.json" |