Bump the go-mod-magefiles group across 1 directory with 3 updates #51
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: "Test" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: ["*"] | |
# NOTE: this is required for checks to be run in the | |
# merge queue. | |
merge_group: | |
types: | |
- "checks_requested" | |
jobs: | |
tests: | |
name: "Unit and Integration Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-go@v5" | |
- uses: "authzed/action-spicedb@v1" | |
with: | |
version: "latest" | |
- name: "Run tests" | |
run: "go test ./..." |