File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 3
3
on : [push]
4
4
5
5
jobs :
6
- test-cloud :
6
+ test-scf :
7
7
name : Test on SCF Environment
8
8
runs-on : ubuntu-latest
9
9
strategy :
18
18
uses : actions/checkout@v2
19
19
- name : Test
20
20
run : swift test --enable-test-discovery
21
+ - name : Test CloudFunctions example
22
+ run : |
23
+ cd Examples/CloudFunctions
24
+ swift build
25
+ - name : Test LocalDebugging example
26
+ run : |
27
+ cd Examples/LocalDebugging/MyCloudFunction
28
+ swift build
21
29
22
30
test-linux :
23
31
name : Test on Linux
36
44
uses : actions/checkout@v2
37
45
- name : Test
38
46
run : swift test --enable-test-discovery
47
+ - name : Test CloudFunctions example
48
+ run : |
49
+ cd Examples/CloudFunctions
50
+ swift build
51
+ - name : Test LocalDebugging example
52
+ run : |
53
+ cd Examples/LocalDebugging/MyCloudFunction
54
+ swift build
39
55
40
56
test-macos :
41
57
name : Test on macOS
45
61
uses : actions/checkout@v2
46
62
- name : Test
47
63
run : swift test
64
+ - name : Test CloudFunctions example
65
+ run : |
66
+ cd Examples/CloudFunctions
67
+ swift build
68
+ - name : Test LocalDebugging example
69
+ run : |
70
+ cd Examples/LocalDebugging/MyCloudFunction
71
+ swift build
You can’t perform that action at this time.
0 commit comments