Skip to content

feat: Add windows support #4

feat: Add windows support

feat: Add windows support #4

Workflow file for this run

name: Validate
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: zig fmt . --check
- run: zig ast-check
build:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: zig build --summary all