Skip to content

workflow fix...

workflow fix... #1

Workflow file for this run

name: Merge Checks
on:
push:
branches: *

Check failure on line 5 in .github/workflows/merges.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/merges.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
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