Skip to content

chore(deps): bump actions/setup-go from 6 to 7 in the all-actions gro… #40

chore(deps): bump actions/setup-go from 6 to 7 in the all-actions gro…

chore(deps): bump actions/setup-go from 6 to 7 in the all-actions gro… #40

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.24"
- name: Format check
run: |
go fmt ./...
git diff --exit-code
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -race ./...