Skip to content

Bump actions/checkout from 5 to 6 #50

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #50

Workflow file for this run

# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: Lee Cannon <leecannon@leecannon.xyz>
name: CI
on:
push:
branches:
- main
paths:
- ".github/workflows/CI.yml"
- "**.zig"
- "**.zig.zon"
pull_request:
paths:
- ".github/workflows/CI.yml"
- "**.zig"
- "**.zig.zon"
workflow_dispatch:
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