Skip to content

build(deps): bump actions/checkout from 5 to 6 #33

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #33

Workflow file for this run

# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2025 Lee Cannon <[email protected]>
name: CI
on:
push:
branches:
- master
paths:
- ".github/workflows/CI.yml"
- "**.zig"
- "**.zig.zon"
pull_request:
paths:
- ".github/workflows/CI.yml"
- "**.zig"
- "**.zig.zon"
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
- name: Lint
run: zig fmt --check --ast-check .
- name: Test
run: zig build test --summary all