Skip to content

build(deps): bump actions/checkout from 6.0.0 to 6.0.1 (#34) #78

build(deps): bump actions/checkout from 6.0.0 to 6.0.1 (#34)

build(deps): bump actions/checkout from 6.0.0 to 6.0.1 (#34) #78

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.24', '1.25' ]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ matrix.go }}
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...