Skip to content

Commit b6a0f13

Browse files
Merge pull request #27 from PythonGermany/PythonGermany-patch-1
Add cache to linux build workflow
2 parents 837227a + 8d84458 commit b6a0f13

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/linux-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18+
19+
- name: Cache object files
20+
id: cache-obj-files
21+
uses: actions/cache@v4
22+
with:
23+
path: obj
24+
key: ${{ runner.os }}-obj-files
25+
1826
- name: Build binary
1927
run: make
2028

0 commit comments

Comments
 (0)