Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

CI

CI #645

Workflow file for this run

name: CI
on:
push:
paths:
- '**.zig'
pull_request:
paths:
- '**.zig'
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
- name: Lint
run: zig fmt --check --ast-check **.zig
- name: Test
run: zig build test