chore(deps): bump github.com/coder/guts from 1.0.2-0.20250227211802-139809366a22 to 1.2.0 #236
This file contains hidden or 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: GoTests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test-go: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.8 | |
- uses: actions/checkout@v4.2.2 | |
- name: Install gotestsum | |
shell: bash | |
run: go install gotest.tools/gotestsum@latest | |
- name: Run tests | |
run: gotestsum ./... |