build(deps): bump google.golang.org/protobuf from 1.30.0 to 1.31.0 #456
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" |