Skip to content

feat(skills): add m16-documentation skill for Rust documentation guid… #107

feat(skills): add m16-documentation skill for Rust documentation guid…

feat(skills): add m16-documentation skill for Rust documentation guid… #107

Workflow file for this run

name: Candy macOS arm

Check failure on line 1 in .github/workflows/macos-arm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos-arm.yml

Invalid workflow file

(Line: 5, Col: 16): Unexpected value '', (Line: 7, Col: 16): Unexpected value ''
on:
push:
branches: [""]
pull_request:
branches: [""]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ["self-hosted", "macos-arm"]
steps:
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/checkout@v4
- name: Clippy check
run: make lint
test:
runs-on: ["self-hosted", "macos-arm"]
steps:
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/checkout@v4
- name: Unit test
run: make test
build:
runs-on: ["self-hosted", "macos-arm"]
steps:
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/checkout@v4
- name: Build release
run: make release