Skip to content

feat(synthesizer): remove a subcircuit list from opEntry #8

feat(synthesizer): remove a subcircuit list from opEntry

feat(synthesizer): remove a subcircuit list from opEntry #8

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Rust 설정
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
# Node.js 설정
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
# Foundry 설정
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
# 빌드
- name: Build all packages
run: make build
# 테스트
- name: Test all packages
run: make test