Clean up bulletproof, add aggregated proofs and twisted ElGamal #2292
Workflow file for this run
This file contains hidden or 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
| name: Codecov | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| coverage: | |
| name: Collect test coverage | |
| runs-on: ubuntu-latest | |
| # nightly rust might break from time to time | |
| continue-on-error: true | |
| env: | |
| RUSTFLAGS: -D warnings | |
| CARGO_TERM_COLOR: always | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: llvm-tools-preview | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install cargo-llvm-cov | |
| uses: taiki-e/install-action@cargo-llvm-cov | |
| - name: Collect coverage data | |
| run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info -- --skip zk_login_e2e | |
| - name: Upload coverage data to codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| files: lcov.info |