Skip to content

Merge pull request #126 from josephschorr/add-create-error-reason #39

Merge pull request #126 from josephschorr/add-create-error-reason

Merge pull request #126 from josephschorr/add-create-error-reason #39

Workflow file for this run

---
name: "Build & Test"
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
pull_request:
branches: ["*"]
merge_group:
types:
- "checks_requested"
env:
GO_VERSION: "~1.20.5"
jobs:
test:
name: "Run Integration Tests"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "authzed/action-spicedb@v1"
- name: "Unit tests"
run: "go run magefile.go test:integration"