Fix NamedType error in tests #32
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: CodeQL queries test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: Run CodeQL query tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: init | |
| uses: github/codeql-action/init@v3 | |
| - name: Run tests | |
| run: | | |
| ${{ steps.init.outputs.codeql-path }} pack ci ./cpp/test/ | |
| ${{ steps.init.outputs.codeql-path }} test run -v ./cpp/test/ | |
| ${{ steps.init.outputs.codeql-path }} pack ci ./go/test/ | |
| ${{ steps.init.outputs.codeql-path }} test run -v ./go/test/ | |
| ${{ steps.init.outputs.codeql-path }} pack ci ./java/test/ | |
| ${{ steps.init.outputs.codeql-path }} test run -v ./java/test/ |