Skip to content

remove the autodoc build step, might be responsible for the random GH… #69

remove the autodoc build step, might be responsible for the random GH…

remove the autodoc build step, might be responsible for the random GH… #69

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- name: prepare-linux
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev
- name: build-native
run: zig build --summary all
# - name: build-web
# run: zig build --summary all -Dtarget=wasm32-emscripten