Skip to content

Add targeted client content replacement #1000

Add targeted client content replacement

Add targeted client content replacement #1000

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.16.0
- run: zig fmt --check build.zig src examples/minimal
- run: zig build test
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-linux
- aarch64-linux
- x86_64-windows
- x86_64-macos
- aarch64-macos
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.16.0
- run: zig build -Dtarget=${{ matrix.target }}