File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
test :
13
13
runs-on : macos-14
14
14
steps :
15
- - uses : actions/checkout@v4.1.7
15
+ - uses : actions/checkout@v4.2.2
16
16
- name : Run tests
17
17
run : |
18
18
xcodebuild -resolvePackageDependencies \
@@ -28,21 +28,21 @@ jobs:
28
28
-derivedDataPath DerivedData \
29
29
-clonedSourcePackagesDirPath ClonedSourcePackages \
30
30
-enableCodeCoverage YES \
31
- -destination 'platform=iOS Simulator,name=iPhone 14 ' \
31
+ -destination 'platform=iOS Simulator,name=iPhone 16 ' \
32
32
| xcpretty --report junit --output test_report.xml
33
33
- name : Extract code coverage
34
34
run : |
35
35
binary=DerivedData/Build/Products/Debug-iphonesimulator/ComposableNavigation.o
36
36
profile=DerivedData/Build/ProfileData/*/Coverage.profdata
37
37
xcrun --run llvm-cov show $binary --instr-profile $profile >> coverage.txt
38
38
- name : Upload coverage to Codecov
39
- uses : codecov/codecov-action@v4.5.0
39
+ uses : codecov/codecov-action@v5.1.2
40
40
with :
41
41
token : ${{ secrets.CODECOV_TOKEN }}
42
42
files : ./coverage.txt
43
43
fail_ci_if_error : true
44
44
- name : Publish Test Report
45
- uses : mikepenz/action-junit-report@v4.3.1
45
+ uses : mikepenz/action-junit-report@v5.2.0
46
46
with :
47
47
report_paths : ' test_report.xml'
48
48
You can’t perform that action at this time.
0 commit comments