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 131f6ab commit 4e5d514Copy full SHA for 4e5d514
.github/workflows/codeql.yml
@@ -22,6 +22,18 @@ jobs:
22
- name: Checkout
23
uses: actions/checkout@v4
24
25
+ - name: Cache Nix Store
26
+ uses: actions/cache@v4
27
+ id: cache
28
+ with:
29
+ path: /nix/store
30
+ key: ${{ runner.os }}-${{ hashFiles('tooling/**') }}
31
+
32
+ - name: Prepare Nix Store
33
+ if: steps.cache.outputs.cache-hit != 'true'
34
+ run: |
35
+ nix-shell --pure --command "codeql version" tooling/shell.nix
36
37
- name: Create database
38
run: |
39
nix-shell --pure --command "codeql database create --language=ql --source=. $RUNNER_TEMP/ql-db" tooling/shell.nix
0 commit comments