File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a Swift project
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3
+
1
4
name : Swift
2
5
3
6
on :
4
7
push :
5
- branches : [ master ]
8
+ branches : [ " master" ]
6
9
pull_request :
7
- branches : [ master ]
10
+ branches : [ " master" ]
8
11
9
12
jobs :
10
13
build :
11
14
12
15
runs-on : macos-latest
13
16
14
17
steps :
15
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
16
19
- name : Build
17
- run : swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios13.0-simulator"
18
- # - name: Run tests
19
- # run: swift test -v
20
+ run : swift build -v
21
+ - name : Run tests
22
+ run : swift test -v
You can’t perform that action at this time.
0 commit comments