We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d8e396 commit 3f93f27Copy full SHA for 3f93f27
.github/workflows/ci.yml
@@ -47,6 +47,11 @@ jobs:
47
fetch-depth: 0
48
submodules: recursive
49
50
+ - name: ccache # This should always come after the actions/checkout step.
51
+ uses: hendrikmuhs/ccache-action@v1.2
52
+ with:
53
+ key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.build }}
54
+
55
- name: Install Phasar Dependencies
56
shell: bash
57
run: |
@@ -68,12 +73,6 @@ jobs:
68
73
-G Ninja
69
74
ninja -C build
70
75
71
- - name: ccache # This should always come after the actions/checkout step.
72
- uses: hendrikmuhs/ccache-action@v1.2
- with:
- key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.build }}
- create-symlink: true
76
-
77
- name: Run Unittests
78
79
0 commit comments