Skip to content

feat: implement the first version #1

feat: implement the first version

feat: implement the first version #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
id-token: write
contents: read
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: nix develop --command bash -e {0}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/flakehub-cache-action@main
- run: "true" # warm up the nix store
- run: biome ci
- run: cd pkg/emitters/websocket/static && bun install
- run: cd pkg/emitters/websocket/static && bun run build
- run: test -z "$(gofmt -l . | tee /dev/stderr)"
- run: go vet ./...
- run: go test -v ./...