Skip to content

scm: Update build to compile with latest master #5175

scm: Update build to compile with latest master

scm: Update build to compile with latest master #5175

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
cache: false
- run: zig env
- name: Run zig fmt
if: matrix.os == 'ubuntu-latest'
run: zig fmt --check .
- name: Run Tests
run: zig build test --summary all