Skip to content

docs: mark v0.2.0 as released in CHANGELOG (#4) #4

docs: mark v0.2.0 as released in CHANGELOG (#4)

docs: mark v0.2.0 as released in CHANGELOG (#4) #4

Workflow file for this run

name: ci
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
timeout-minutes: 20
name: build & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.25.6"
cache-dependency-path: go.sum
- name: Vet
run: go vet ./...
- name: Build
run: go build ./...
- name: Unit tests
# -short skips integration tests that need a running Dgraph instance.
run: go test -short -race ./...