name: Build
on:
push:
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
include:
- os: windows-latest
arch: x64
platform: windows
- os: ubuntu-latest
arch: x64
platform: linux
- os: macos-latest
arch: arm64
platform: macos
name: Build on ${{ matrix.arch }}-${{ matrix.platform }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@nightly
- name: Restore cargo registry and git cache
uses: actions/cache@v4.3.0
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Restore workspace target cache
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-workspace-target-${{ hashFiles('**/Cargo.toml') }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-workspace-target-
- name: Build workspace
run: cargo build --workspace --verbose