Skip to content

ci: Adds quotes on cargo config #5

ci: Adds quotes on cargo config

ci: Adds quotes on cargo config #5

Workflow file for this run

name: "Builds - MacOS"
on:
push:
branches:
- "!main"
- "*"
pull_request:
branches:
- "main"
jobs:
build:
strategy:
matrix:
include:
- target: aarch64-apple-darwin
- target: x86_64-apple-darwin
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Adds rust target
run: rustup target add ${{ matrix.target }}
- name: Build
run: cargo build --release --target=${{ matrix.target }}