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 4e2fb4c commit 6e489c0Copy full SHA for 6e489c0
.github/workflows/test-eql.yml
@@ -48,6 +48,15 @@ jobs:
48
cache: true # [default: true] cache mise using GitHub's cache
49
cache_key_prefix: "mise-v3"
50
51
+ - name: Cache Rust directories
52
+ uses: actions/cache@v4
53
+ with:
54
+ path: |
55
+ ~/.rustup
56
+ key: rust-cache-${{ runner.os }}-${{ hashFiles('mise.toml') }}
57
+ restore-keys: |
58
+ rust-cache-${{ runner.os }}-
59
+
60
- name: Setup database (Postgres ${{ matrix.postgres-version }})
61
run: |
62
mise run postgres:up postgres-${POSTGRES_VERSION} --extra-args "--detach --wait"
0 commit comments