Closes rustcast immediately, even if the app doesn't launch instantly #30
Workflow file for this run
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: Merge Checks | |
| on: | |
| push: | |
| branches: "*" | |
| jobs: | |
| rust-checks: | |
| name: Rust fmt and macOS ARM64 build | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install macOS ARM64 target | |
| run: rustup target add aarch64-apple-darwin | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Build for macOS ARM64 | |
| run: cargo build --target aarch64-apple-darwin --all-features |