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.
2 parents f0ea8d1 + 9677213 commit 2e324caCopy full SHA for 2e324ca
.github/workflows/build.yaml
@@ -13,6 +13,14 @@ jobs:
13
with:
14
go-version: 1.21
15
16
+ - name: Cache Go modules
17
+ uses: actions/cache@v3
18
+ with:
19
+ path: |
20
+ ~/.cache/go-build
21
+ ~/go/pkg/mod
22
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
23
+
24
- name: Display Go version
25
run: go version
26
@@ -38,6 +46,12 @@ jobs:
38
46
39
47
name: dist
40
48
49
+ - name: Cache pip dependencies
50
51
52
+ path: ~/.cache/pip
53
+ key: ${{ runner.os }}-pip-${{ hashFiles('e2e/requirements.txt') }}
54
41
55
- name: Install tlm
42
56
run: |
43
57
mv $(cat VERSION)/tlm_$(cat VERSION)_linux_amd64 /usr/local/bin/tlm
0 commit comments