File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22
22
test_script :
23
23
- . $HOME/.cargo/env
24
24
- env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
25
- - grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/sys/ *" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
26
- - bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'
25
+ - grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/*" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
26
+ - bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info' -F freebsd
Original file line number Diff line number Diff line change @@ -124,6 +124,13 @@ jobs:
124
124
path : target
125
125
key : ${{ runner.os }}-test-${{ steps.rustcversion.outputs.version }}-${{ hashFiles('**/Cargo.toml') }}
126
126
127
+ - name : Downgrade log
128
+ uses : actions-rs/cargo@v1
129
+ if : ${{ matrix.rust == '1.56.0' }}
130
+ with :
131
+ command : update
132
+ args : --package log --precise 0.4.16
133
+
127
134
- name : Run tests
128
135
uses : actions-rs/cargo@v1
129
136
with :
You can’t perform that action at this time.
0 commit comments