Skip to content

Log, contain, and cleanly surface Bedrock mid-stream errors on the fable path #141

Log, contain, and cleanly surface Bedrock mid-stream errors on the fable path

Log, contain, and cleanly surface Bedrock mid-stream errors on the fable path #141

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build, vet, test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: CGO_ENABLED=0 go test ./...