Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: prove all tx in a block #6

Merged
merged 8 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Check, Test, and Format
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: lg-prover-32CPU
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -31,12 +31,10 @@ jobs:
with:
command: check
test:
name: Test Suite
runs-on: ubuntu-latest
runs-on: lg-prover-32CPU
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -56,11 +54,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --release
args: "--all --release -- --test-threads 32"
env:
CI_RPC_URL: ${{ secrets.CI_RPC_URL }}

fmt:
name: Rustfmt
runs-on: ubuntu-latest
runs-on: lg-prover-32CPU
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
Loading
Loading