Skip to content

feat: migrate zlog to zig 0.15.1 #10

feat: migrate zlog to zig 0.15.1

feat: migrate zlog to zig 0.15.1 #10

Workflow file for this run

name: Zig
on:
pull_request:
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.1
- run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.1
- run: zig fmt --check src/*.zig
- uses: DonIsaac/zlint-action@v0