CI/CD 파이프라인 추가: 태그 릴리스 + melan-swift 자동 PR #1
This file contains hidden or 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, 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 |