Skip to content

chore(deps): update actions/setup-go digest to 7a3fe6c in .github/wor… #211

chore(deps): update actions/setup-go digest to 7a3fe6c in .github/wor…

chore(deps): update actions/setup-go digest to 7a3fe6c in .github/wor… #211

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
paths:
- "**/*.go"
- "**/*_test.go"
- ".github/**"
- "g4/**"
- "magefile.go"
pull_request:
branches: [ "main" ]
paths:
- "**/*.go"
- "**/*_test.go"
- ".github/**"
- "g4/**"
- "magefile.go"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version: '1.25'
- name: Build
run: |
go run mage.go generate
- name: Test
run: go test -v ./...