Skip to content

Use anytype instead of AnyReader/AnyWriter #101

Use anytype instead of AnyReader/AnyWriter

Use anytype instead of AnyReader/AnyWriter #101

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
compile:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- run: zig build
- run: zig build release
- run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- run: zig fmt --check src/*.zig