Skip to content

clap: don't recurse into c headers #44

clap: don't recurse into c headers

clap: don't recurse into c headers #44

Workflow file for this run

on:
push:
workflow_dispatch:
pull_request:
jobs:
examples:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v2
- name: Run tests
run: zig build test
- name: Build examples
run: |
for example in $(find $(realpath ..) -path "*/zigplug/examples/*/build.zig"); do
cd $(dirname $example)
zig build
done