Skip to content

fix: add remaining build options #9

fix: add remaining build options

fix: add remaining build options #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: true
matrix:
zig-version: [0.14.1]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: ${{matrix.zig-version}}
- name: Build
run: zig build --summary all