Skip to content

Go package

Go package #19

Workflow file for this run

name: Go package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 10 * * 1' # runs at 10:00 UTC on Monday
jobs:
run:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
go-version: [ 'stable' ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Go Vet
run: go vet ./...
- name: Go Tidy
run: go mod tidy && git diff --exit-code
- name: Go Mod
run: go mod download
- name: Go Mod Verify
run: go mod verify
- name: Test
run: go test -v -count=1 -race -shuffle=on