Skip to content

Merge pull request #163 from josephschorr/new-rel-filters #45

Merge pull request #163 from josephschorr/new-rel-filters

Merge pull request #163 from josephschorr/new-rel-filters #45

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.21.3"
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"