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 ad60247 commit b9a70dbCopy full SHA for b9a70db
.github/workflows/github-cxx-qt-tests.yml
@@ -87,6 +87,7 @@ jobs:
87
rustup component add rustfmt
88
# Ensure we do not have any existing coverage files
89
- run: rm -f coverage/*.profraw
90
+ - run: ls -l ./target/debug
91
- name: build
92
env:
93
RUSTFLAGS: -Cinstrument-coverage
@@ -107,6 +108,13 @@ jobs:
107
108
fail_ci_if_error: true
109
token: ${{ secrets.CODECOV_TOKEN }}
110
verbose: true
111
+ - name: Upload GitHub Actions artifacts of lcov
112
+ if: always()
113
+ uses: actions/upload-artifact@v4
114
+ with:
115
+ name: lcov
116
+ path: ./target/debug/lcov.info
117
+ if-no-files-found: ignore
118
119
build-wasm:
120
name: Ubuntu 24.04 (wasm_32) Qt 6
0 commit comments