This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Testing framework for bootloader #19
Workflow file for this run
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
name: "Rust CI" | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Build contracts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
node-version: 18.18.0 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly-2023-04-17 | |
- run: yarn | |
- run: yarn build | |
- run: yarn preprocess | |
- run: yarn compile-yul | |
# Test bootloader | |
- run: ci_run bash -c "cd booloader/test_infra && cargo run" | |