Skip to content

chore(deps): bump the all-actions group with 5 updates #25

chore(deps): bump the all-actions group with 5 updates

chore(deps): bump the all-actions group with 5 updates #25

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@v6
- uses: actions/setup-go@v6
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 ./...