Skip to content

docs(readme): add community list note #3

docs(readme): add community list note

docs(readme): add community list note #3

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
name: Format and Test
steps:
- uses: actions/checkout@v3
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: "0.13.0"
- name: Check formatting
run: zig fmt --check .
- name: Run tests
run: zig build test