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: Restake evm asset E2E Tests #865

Merged
merged 13 commits into from
Jan 7, 2025
36 changes: 35 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,41 @@ jobs:
run: sudo apt-get install protobuf-compiler

- name: Run test suite
run: cargo nextest run --profile ci
run: cargo nextest run --workspace --exclude tangle --profile ci

e2e:
env:
CARGO_TERM_COLOR: always

concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/free-disk-space
- name: Install toolchain
id: toolchain
uses: actions-rs/toolchain@master
with:
profile: minimal
toolchain: stable
target: wasm32-unknown-unknown

- name: Install cargo-nextest
uses: taiki-e/install-action@v2
with:
tool: nextest

- name: Rust Cache
uses: Swatinem/[email protected]

- name: Install Protobuf
run: sudo apt-get install protobuf-compiler

- name: Run End to End test suite
run: cargo nextest run -rp tangle -F manual-seal,testnet,txpool --profile ci --nocapture

clippy:
concurrency:
Expand Down
Loading
Loading