File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
pull_request :
8
8
branches :
9
- - ' * '
9
+ - " * "
10
10
workflow_dispatch :
11
11
12
12
jobs :
13
13
lint :
14
14
runs-on : macos-13
15
15
environment : default
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- name : SwiftFormat version
19
19
run : swiftformat --version
20
20
- name : Format lint
@@ -28,24 +28,24 @@ jobs:
28
28
environment : default
29
29
strategy :
30
30
matrix :
31
- xcode : [' 14.3', ' 15.0' ]
31
+ xcode : [" 14.3", " 15.0" ]
32
32
# Swift: 5.8 , 5.9
33
33
steps :
34
- - uses : actions/checkout@v3
34
+ - uses : actions/checkout@v4
35
35
- name : Select Xcode ${{ matrix.xcode }}
36
36
run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
37
37
- name : Run Tests
38
38
run : swift test --enable-code-coverage --parallel
39
39
- name : Swift Coverage Report
40
40
run : xcrun llvm-cov export -format="lcov" .build/debug/swift-argument-encodingPackageTests.xctest/Contents/MacOS/swift-argument-encodingPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
41
- - uses : codecov/codecov-action@v3
41
+ - uses : codecov/codecov-action@v4
42
42
with :
43
43
token : ${{ secrets.CODECOV_TOKEN }}
44
44
fail_ci_if_error : true # optional (default = false)
45
45
linux-test :
46
46
runs-on : ubuntu-latest
47
47
environment : default
48
-
48
+
49
49
steps :
50
50
- uses : actions/checkout@v3
51
51
- name : Run Tests
You can’t perform that action at this time.
0 commit comments