Skip to content

feat(macos): add Intel (x86_64) build with separate DMG #40

feat(macos): add Intel (x86_64) build with separate DMG

feat(macos): add Intel (x86_64) build with separate DMG #40

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: test + clippy
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: Install system build deps
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
libssl-dev pkg-config clang cmake g++ curl
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, llvm-tools-preview
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: ci
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: cargo test with coverage
run: cargo llvm-cov --locked --summary-only
- name: cargo clippy
run: cargo clippy --locked --all-targets -- -D warnings