Skip to content

Native installers

Native installers #269

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Code format check
run: cargo fmt --all --check
- name: Docs format check
uses: DavidAnson/markdownlint-cli2-action@v21
with:
config: ".markdownlint.json"
globs: "**/*.md"
- name: Build
run: cargo build --workspace
- name: Test
run: cargo test --workspace --all-features