We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af09db8 commit f4c4101Copy full SHA for f4c4101
.github/workflows/test.yml
@@ -10,8 +10,11 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
13
- - id: init
14
- uses: github/codeql-action/init@v3
15
- name: Run tests
16
run: |
17
- ${{ steps.init.outputs.codeql-path }} test run -vvv ./java/test/
+ wget https://github.com/github/codeql-cli-binaries/releases/download/v2.23.0/codeql-linux64.zip
+ unzip codeql-linux64.zip
+ ./codeql/codeql --version
18
+ ./codeql/codeql pack install ./java/src/
19
+ ./codeql/codeql pack install ./java/test/
20
+ ./codeql/codeql test run -vvv ./java/test/
0 commit comments