This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
feat: Adding compile CI #3
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 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly-2023-04-17 | |
- run: yarn | |
- run: yarn install | |
- run: yarn build | |
- run: yarn preprocess | |
- run: yarn compile-yul | |