Skip to content

chore(deps): update actions/checkout action to v4 in .github/workflow… #15

chore(deps): update actions/checkout action to v4 in .github/workflow…

chore(deps): update actions/checkout action to v4 in .github/workflow… #15

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" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: |
go run mage.go generate
- name: Test
run: go test -v ./...