Skip to content

initial commit

initial commit #1

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v1
- name: Check Formatting
run: zig fmt --ast-check --check .
- name: Build
run: zig build --summary all