feat: poseidon hash #1166
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
# This workflow runs our end-to-end tests suite. | |
# | |
# It roughly follows these steps: | |
# - Install rust | |
# - Install `cargo-stylus` | |
# - Install `solc` | |
# - Spin up `nitro-testnode` | |
# | |
# Contract deployments and account funding happen on a per-test basis. | |
name: e2e | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
required: | |
name: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
cache-key: "e2e-tests" | |
rustflags: "" | |
- name: Install cargo-stylus | |
run: cargo install cargo-stylus@0.5.3 | |
- name: Install solc | |
run: | | |
curl -LO https://github.com/ethereum/solidity/releases/download/v0.8.24/solc-static-linux | |
sudo mv solc-static-linux /usr/bin/solc | |
sudo chmod a+x /usr/bin/solc | |
- name: Setup nitro node | |
run: ./scripts/nitro-testnode.sh -d -i | |
- name: run integration tests | |
run: ./scripts/e2e-tests.sh |