Skip to content

fix: update to latest Zig post Writergate #352

fix: update to latest Zig post Writergate

fix: update to latest Zig post Writergate #352

Workflow file for this run

name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
zig: "0.15.0-dev.1034+bd97b6618"

Check failure on line 14 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 14, Col: 14): Unexpected value '0.15.0-dev.1034+bd97b6618' .github/workflows/tests.yml (Line: 34, Col: 14): Unexpected value '0.15.0-dev.1034+bd97b6618'
runs-on: ${{matrix.os}}
steps:
- name: Clone Ziglua
uses: actions/checkout@v3
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ matrix.zig }}
- name: Run tests
run: make test
test_cross:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
zig: "0.15.0-dev.1034+bd97b6618"
runs-on: ${{matrix.os}}
steps:
- name: Clone Ziglua
uses: actions/checkout@v3
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ matrix.zig }}
- name: Run tests
run: make test_cross