Skip to content

Commit

Permalink
Merge pull request #5 from trailofbits/mschwager-ci-tests
Browse files Browse the repository at this point in the history
Add CI job for running query tests
  • Loading branch information
mschwager authored Jul 8, 2024
2 parents 6763c4f + 5b85a44 commit 23da6f6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 }} test run ./cpp/test/
${{ steps.init.outputs.codeql-path }} test run ./go/test/

0 comments on commit 23da6f6

Please sign in to comment.