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 5a85b71 commit fa66037Copy full SHA for fa66037
.github/workflows/CI.yml
@@ -9,7 +9,6 @@ jobs:
9
strategy:
10
matrix:
11
version:
12
- - 5.2.5
13
- 5.3.3
14
- 5.4.1
15
- nightly
@@ -40,7 +39,6 @@ jobs:
40
39
- amazonlinux2
41
- centos8
42
43
44
45
46
container:
@@ -103,3 +101,22 @@ jobs:
103
101
run: |
104
102
cd Examples/LocalDebugging/MyCloudFunction
105
swift build
+
+ test-52:
106
+ name: Test for Swift 5.2
107
+ runs-on: ubuntu-latest
108
+ strategy:
109
+ matrix:
110
+ image:
111
+ - swift:5.2.5-bionic
112
+ - swift:5.2.5-focal
113
+ - swift:5.2.5-amazonlinux2
114
+ - swift:5.2.5-centos8
115
+ - stevapple/swift-scf:5.2.5
116
+ container:
117
+ image: ${{ matrix.image }}
118
+ steps:
119
+ - name: Checkout
120
+ uses: actions/checkout@v2
121
+ - name: Test
122
+ run: swift test --enable-test-discovery
0 commit comments