Skip to content

docs: add Community section to README #31

docs: add Community section to README

docs: add Community section to README #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (${{ matrix.os }}, Zig ${{ matrix.zig-version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
zig-version: ['0.17.0-dev']
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: pantry-pm/pantry/packages/action@main
with:
packages: zig@0.17.0-dev
- run: zig build
- run: zig build test
lint:
name: Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pantry-pm/pantry/packages/action@main
with:
packages: zig@0.17.0-dev
- run: zig fmt --check .