Skip to content

enforce inlining in Int, Float and Bool #30

enforce inlining in Int, Float and Bool

enforce inlining in Int, Float and Bool #30

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Checks
jobs:
check:
runs-on: ubuntu-24.04
strategy:
matrix:
zig:
- latest
- master
optimize:
- Debug
- ReleaseSafe
- ReleaseFast
- ReleaseSmall
lookupTable:
- none
- small
- all
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Zig
uses: mlugg/[email protected]
with:
version: ${{ matrix.zig }}
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json
- name: Install Test Dependencies
run: bun i
- name: Run Compatibility Test
run: zig build test-compat -Doptimize=${{ matrix.optimize }} -Dlookup-table=${{ matrix.lookupTable }}