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 4898aa2 commit b9c405dCopy full SHA for b9c405d
.github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
name: CI
2
3
-on:
+on:
4
push:
5
branches: [master]
6
pull_request:
@@ -13,6 +13,12 @@ jobs:
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v1
16
+ - uses: actions/cache@v2
17
+ with:
18
+ path: .build
19
+ key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
20
+ restore-keys: |
21
+ ${{ runner.os }}-spm-
22
- name: Build and Test
23
run: swift test -c release
24
env:
@@ -27,6 +33,12 @@ jobs:
27
33
28
34
29
35
36
37
38
39
40
41
30
42
- name: Install System Dependencies
31
43
run: |
32
44
apt-get update
0 commit comments