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.
2 parents 857ddd6 + 56acd56 commit a1de1caCopy full SHA for a1de1ca
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: Continuous Integration
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
7
+jobs:
8
9
+ build-release:
10
+ strategy:
11
+ matrix:
12
+ # https://github.com/actions/virtual-environments
13
+ os: [macos-12, ubuntu-20.04]
14
+ runs-on: ${{ matrix.os }}
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - run: swift build --disable-automatic-resolution -c release
18
19
+ run-tests:
20
21
22
+ swift-version: [5.3, 5.4, 5.5, 5.6]
23
+ runs-on: ubuntu-20.04
24
25
+ - uses: fwal/setup-swift@v1
26
+ with:
27
+ swift-version: ${{ matrix.swift-version }}
28
29
+ - run: swift test
0 commit comments