Skip to content

update to Zig 0.16.0-dev.1204+389368392 #7

update to Zig 0.16.0-dev.1204+389368392

update to Zig 0.16.0-dev.1204+389368392 #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v2
- name: Check Formatting
run: zig fmt --ast-check --check .
- name: Run Tests
run: zig build test --summary all