name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Build (${{ matrix.name }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: Windows x64
os: windows-latest
target: x86_64-pc-windows-msvc
- name: Linux x64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- name: Linux ARM
os: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
- name: macOS ARM
os: macos-latest
target: aarch64-apple-darwin
- name: macOS Intel
os: macos-latest
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: swatinem/rust-cache@v2
- name: Build release
run: cargo build --release --target ${{ matrix.target }}