Skip to content

Closes rustcast immediately, even if the app doesn't launch instantly #30

Closes rustcast immediately, even if the app doesn't launch instantly

Closes rustcast immediately, even if the app doesn't launch instantly #30

Workflow file for this run

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