forked from zcash/halo2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f82eecc
commit 9af61eb
Showing
1 changed file
with
28 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,33 +127,34 @@ jobs: | |
- name: Test halo2 book | ||
run: mdbook test -L target/debug/deps book/ | ||
|
||
# codecov: | ||
# name: Code coverage | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# # Use stable for this to ensure that cargo-tarpaulin can be built. | ||
# - id: prepare | ||
# uses: ./.github/actions/prepare | ||
# with: | ||
# toolchain: stable | ||
# nightly-features: true | ||
# - name: Install cargo-tarpaulin | ||
# uses: actions-rs/cargo@v1 | ||
# with: | ||
# command: install | ||
# args: cargo-tarpaulin | ||
# - name: Generate coverage report | ||
# uses: actions-rs/cargo@v1 | ||
# with: | ||
# command: tarpaulin | ||
# args: > | ||
# ${{ steps.prepare.outputs.feature-flags }} | ||
# --timeout 600 | ||
# --out Xml | ||
# - name: Upload coverage to Codecov | ||
# uses: codecov/[email protected] | ||
codecov: | ||
name: Code coverage | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Use stable for this to ensure that cargo-tarpaulin can be built. | ||
- id: prepare | ||
uses: ./.github/actions/prepare | ||
with: | ||
toolchain: stable | ||
nightly-features: true | ||
- name: Install cargo-tarpaulin | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: install | ||
args: cargo-tarpaulin | ||
- name: Generate coverage report | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: tarpaulin | ||
# Extend the timeout to 3600 to ensure the code coverage test pass | ||
args: > | ||
${{ steps.prepare.outputs.feature-flags }} | ||
--timeout 3600 | ||
--out Xml | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
|
||
doc-links: | ||
name: Intra-doc links | ||
|