Skip to content

Bump actions/checkout from 5.0.1 to 6.0.1 #44

Bump actions/checkout from 5.0.1 to 6.0.1

Bump actions/checkout from 5.0.1 to 6.0.1 #44

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: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...