Skip to content

Commit 56e5e47

Browse files
committed
Add CI job for running query tests
1 parent f6a32a9 commit 56e5e47

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CodeQL queries test
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
test:
9+
name: Run CodeQL query tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- id: init
13+
uses: github/codeql-action/init@v3
14+
- name: Run tests
15+
run: |
16+
${{ steps.init.outputs.codeql-path }} test run ./cpp/test/
17+
${{ steps.init.outputs.codeql-path }} test run ./go/test/

0 commit comments

Comments
 (0)