Skip to content

performance optimizations #10

performance optimizations

performance optimizations #10

Workflow file for this run

name: Zig CI
on:
push:
branches: [ "develop", "main", "master" ]
pull_request:
branches: [ "develop", "main", "master" ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: master
- name: Check Formatting
run: zig fmt --check .
- name: Build
run: zig build
- name: Run Tests
run: zig build test