Skip to content

update to zig 0.12.0 #7

update to zig 0.12.0

update to zig 0.12.0 #7

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
single_thread: [true, false]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0
- name: Generate and validate packages
working-directory: test
run: |
zig build -Dsingle-threaded=${{ matrix.single_thread }}