Skip to content

Add managed browser launching #1006

Add managed browser launching

Add managed browser launching #1006

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 }}