32
32
xcode-version : latest-stable
33
33
- uses : actions/checkout@v3
34
34
- name : Build and test
35
- run : swift test --parallel --enable-test-discovery
35
+ run : swift test --parallel
36
36
37
37
linux :
38
38
name : Test on Linux
@@ -42,19 +42,20 @@ jobs:
42
42
- uses : actions/checkout@v3
43
43
- name : Test
44
44
run : swift test --enable-code-coverage
45
- - name : Get test coverage html
46
- run : |
47
- llvm-cov show \
48
- $(swift build --show-bin-path)/GraphitiPackageTests.xctest \
49
- --instr-profile $(swift build --show-bin-path)/codecov/default.profdata \
50
- --ignore-filename-regex="\.build|Tests" \
51
- --format html \
52
- --output-dir=.test-coverage
53
- - name : Upload test coverage html
54
- uses : actions/upload-artifact@v4
55
- with :
56
- name : test-coverage-report
57
- path : .test-coverage
45
+ # TODO: Add test coverage, but it's currently not working with Swift 6.1.0
46
+ # - name: Get test coverage html
47
+ # run: |
48
+ # llvm-cov show \
49
+ # $(swift build --show-bin-path)/GraphitiPackageTests.xctest \
50
+ # --instr-profile $(swift build --show-bin-path)/codecov/default.profdata \
51
+ # --ignore-filename-regex="\.build|Tests" \
52
+ # --format html \
53
+ # --output-dir=.test-coverage
54
+ # - name: Upload test coverage html
55
+ # uses: actions/upload-artifact@v4
56
+ # with:
57
+ # name: test-coverage-report
58
+ # path: .test-coverage
58
59
59
60
backcompat-ubuntu-22_04 :
60
61
name : Test Swift ${{ matrix.swift }} on Ubuntu 22.04
0 commit comments