File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
src/CodeQLToolkit.Features/Templates/Test/Actions Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -78,19 +78,20 @@ jobs:
78
78
{% raw %}
79
79
- name: Install CodeQL
80
80
id: install-codeql
81
- uses: ./.github/actions/install-codeql
82
- with:
83
- codeql-cli-version: ${{ matrix.codeql_cli }}
84
- codeql-stdlib-version: ${{ matrix.codeql_standard_library }}
85
- add-to-path: true
81
+ shell: bash
82
+ run: |
83
+ echo "Installing CodeQL"
84
+ qlt codeql run install --base example/
85
+ echo "-----------------------------"
86
+ echo "CodeQL Home: $QLT_CODEQL_HOME"
87
+ echo "CodeQL Binary: $QLT_CODEQL_PATH"
86
88
87
89
- name: Verify Versions of Tooling
88
90
shell: bash
89
91
run: |
90
- echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
91
92
echo -e "Checking CodeQL Version:"
92
- codeql --version
93
-
93
+ $QLT_CODEQL_PATH --version
94
+
94
95
echo -e "Checking QLT Version:"
95
96
echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
96
97
qlt version
You can’t perform that action at this time.
0 commit comments