We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b60bbb commit 01765b7Copy full SHA for 01765b7
.github/actions/setup-rust-poetry/action.yml
@@ -2,18 +2,21 @@ name: setup Rust and Poetry
2
runs:
3
using: composite
4
steps:
5
+
6
- name: Cargo cache
7
uses: actions/cache/@v4
8
with:
9
path: "~/.cargo"
- key: ${{ runner.os }}-cargo
10
+ key: ${{ runner.os }}-cargo
11
12
- name: Poetry cache
13
14
15
path: "~/.cache/pypoetry"
- key: ${{ runner.os }}-poetry-${{ inputs.python }}
- restore-keys: |
16
- ${{ runner.os }}-poetry-
+ key: ${{ runner.os }}-poetry-${{ inputs.python }}
17
+ restore-keys: |
18
+ ${{ runner.os }}-poetry-
19
20
- name: install Rust and Poetry
21
shell: bash
22
run : |
0 commit comments