Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

feat: Adding compile CI #21

Merged
merged 20 commits into from
Oct 6, 2023
Merged
Changes from all 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
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Rust CI"
on:
pull_request:

jobs:
build:
name: Build contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
mm-zk marked this conversation as resolved.
Show resolved Hide resolved
with:
node-version: 18.18.0
- run: yarn
- run: yarn build
- run: yarn preprocess
- run: yarn compile-yul

Loading