Skip to content

Commit

Permalink
Add CI job for running query tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Jul 2, 2024
1 parent f6a32a9 commit 56e5e47
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CodeQL queries test
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Run CodeQL query tests
runs-on: ubuntu-latest
steps:
- id: init
uses: github/codeql-action/init@v3
- name: Run tests
run: |
${{ steps.init.outputs.codeql-path }} test run ./cpp/test/
${{ steps.init.outputs.codeql-path }} test run ./go/test/

0 comments on commit 56e5e47

Please sign in to comment.