26 lines
527 B
YAML
26 lines
527 B
YAML
name: CI debug
|
|
|
|
on:
|
|
push:
|
|
branches: [ci-debug]
|
|
|
|
env:
|
|
ZIG_VERSION: "0.16.0"
|
|
|
|
jobs:
|
|
probe:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Zig
|
|
uses: mlugg/setup-zig@v2
|
|
with:
|
|
version: ${{ env.ZIG_VERSION }}
|
|
|
|
- name: Create the fetch temp dir zig assumes
|
|
run: mkdir -p "${ZIG_GLOBAL_CACHE_DIR:?}/tmp"
|
|
|
|
- name: Fetch dependencies and configure
|
|
run: zig build --help > /dev/null && echo "configure OK, dependencies fetched"
|