Skip to content

Update readme re zig v0.11 and master #134

Update readme re zig v0.11 and master

Update readme re zig v0.11 and master #134

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
paths-ignore:
- "README.md"
pull_request:
branches: [ "main" ]
paths-ignore:
- "README.md"
schedule:
# Once per week
- cron: "43 3 * * 3"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
zig-version: 0.11.0

Check failure on line 25 in .github/workflows/zig.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/zig.yml (Line: 25, Col: 22): Unexpected value '0.11.0'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{ matrix.zig-version }}
- run: zig env
- run: zig build test
# libxev not on windows yet
- if: ${{ matrix.os != 'windows-latest' }}
run: zig build test-aio
- run: zig build benchmark