Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dusk-network/plonk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: be5d38fad6052f72fa133feb5317f24a9ac8cc92
Choose a base ref
..
head repository: dusk-network/plonk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 48be5f4dd7397231f1dc1be088ef7814076bdee0
Choose a head ref
Showing with 11 additions and 4 deletions.
  1. +11 −4 .github/workflows/dusk_ci.yml
15 changes: 11 additions & 4 deletions .github/workflows/dusk_ci.yml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ jobs:
- run: cargo bench --no-run

build_docs:
name: Build documentation
name: Build Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@@ -58,9 +58,16 @@ jobs:
- name: Collect coverage
run: |
RUSTFLAGS='-C link-dead-code' cargo test --release --no-run --all-features
find target/debug/deps -type f -executable ! -name "*.*" |
xargs -n1 kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov
for file in target/debug/deps/*; do
if [[ -x "$file" && "$file" != *.* ]]; then
kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov "$file"
fi
done
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
token: ${{secrets.CODECOV_TOKEN}}

test_nightly_std:
name: Nightly tests std
uses: dusk-network/.github/.github/workflows/run-tests.yml@main