Skip to content

CI/CD 파이프라인 추가: 태그 릴리스 + melan-swift 자동 PR #1

CI/CD 파이프라인 추가: 태그 릴리스 + melan-swift 자동 PR

CI/CD 파이프라인 추가: 태그 릴리스 + melan-swift 자동 PR #1

Workflow file for this run

name: CI
on:
push:
branches: [main, rust-draw]
pull_request:
branches: [main]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-ios,aarch64-apple-ios-sim
- name: Run tests
run: cargo test --manifest-path crates/melan-core/Cargo.toml
- name: Check FFI crate
run: cargo check --manifest-path crates/melan-ffi/Cargo.toml