build(deps): bump github.com/authzed/authzed-go from 0.8.1-0.20230620221821-0b6dd4aec7e2 to 0.9.0 #455
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Build & Test" | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- "!dependabot/*" | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
merge_group: | |
types: | |
- "checks_requested" | |
jobs: | |
build: | |
name: "Build Binary" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-go@v3" | |
with: | |
go-version: "~1.19.1" | |
- uses: "authzed/actions/go-build@main" | |
image-build: | |
name: "Build Container Image" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "authzed/actions/docker-build@main" | |
unit: | |
name: "Run Unit Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-go@v3" | |
with: | |
go-version: "${{ env.GO_VERSION }}" | |
cache: "true" | |
- uses: "authzed/action-spicedb@v1" | |
- uses: "authzed/actions/go-test@main" | |
development: | |
name: "WASM Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-go@v3" | |
with: | |
go-version: "${{ env.GO_VERSION }}" | |
cache: "false" # do not cache to prevent cache poisoning | |
- name: "Install wasmbrowsertest" | |
run: "go install github.com/agnivade/wasmbrowsertest@latest" | |
- name: "Run WASM Tests" | |
run: "GOOS=js GOARCH=wasm go test ./pkg/wasm/... -exec $(go env GOPATH)/bin/wasmbrowsertest" |