Skip to content

CI: Specify 0.13.0 with zig action #20

CI: Specify 0.13.0 with zig action

CI: Specify 0.13.0 with zig action #20

Workflow file for this run

name: Linux CI
on:
push:
branches: [ trunk ]
pull_request:
branches: [ trunk ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- name: Build
run: zig build
- name: Test
run: zig build test