feat(synthesizer): remove a subcircuit list from opEntry #8
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: 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 |