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 97309ba commit 45050abCopy full SHA for 45050ab
.github/workflows/tests.yml
@@ -25,6 +25,18 @@ jobs:
25
- swift:5.3-focal
26
- swift:5.3-centos8
27
- swift:5.3-amazonlinux2
28
+ container: ${{ matrix.image }}
29
+ steps:
30
+ - name: Checkout code
31
+ uses: actions/checkout@v2
32
+ - name: Run tests
33
+ run: swift test --enable-test-discovery
34
+ linux-5_4-plus:
35
+ runs-on: ubuntu-latest
36
+ strategy:
37
+ fail-fast: false
38
+ matrix:
39
+ image:
40
- swift:5.4-xenial
41
- swift:5.4-bionic
42
- swift:5.4-focal
@@ -34,8 +46,8 @@ jobs:
46
steps:
47
- name: Checkout code
48
uses: actions/checkout@v2
- - name: Run tests
- run: swift test --enable-test-discovery
49
+ - name: Run tests (without test discovery flag)
50
+ run: swift test
51
osx:
52
runs-on: macOS-latest
53
0 commit comments