Skip to content

Commit 9afe400

Browse files
committed
fix code coverage workflow
1 parent 81baeb8 commit 9afe400

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/code_coverage.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
env:
1111
CARGO_INCREMENTAL: '0'
12-
RUSTFLAGS: '-Cinstrument-coverage -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
13-
RUSTDOCFLAGS: '-Cinstrument-coverage -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
14-
12+
RUSTFLAGS: '-Cinstrument-coverage -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
13+
RUSTDOCFLAGS: '-Cinstrument-coverage -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
14+
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
@@ -42,6 +42,9 @@ jobs:
4242
- name: Test RPC
4343
run: cargo test --features rpc
4444

45+
- name: Test Bip322
46+
run: cargo test --features bip322
47+
4548
- id: coverage
4649
name: Generate coverage
4750
uses: actions-rs/grcov@v0.1.5

0 commit comments

Comments
 (0)