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 7eeefff commit dd20119Copy full SHA for dd20119
.github/workflows/Test.yml
@@ -1,4 +1,4 @@
1
-name: swift
+name: Test
2
3
on:
4
push:
@@ -8,12 +8,11 @@ on:
8
9
jobs:
10
test_macos:
11
- runs-on: macos-12
+ runs-on: macOS-12
12
timeout-minutes: 30
13
-
14
steps:
15
- uses: actions/checkout@v2
16
17
- - uses: Didstopia/SwiftAction@v1.0.3
18
- with:
19
- swift-action: 'make test'
+ - name: Select Xcode 13.4.1
+ run: sudo xcode-select -s /Applications/Xcode_13.4.1.app
+ - name: Run tests
+ run: make test
0 commit comments