Skip to content

build(deps): bump actions/checkout from 3 to 4 (#17) #13

build(deps): bump actions/checkout from 3 to 4 (#17)

build(deps): bump actions/checkout from 3 to 4 (#17) #13

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Go Tidy
run: go mod tidy && git diff --exit-code
- name: Go Mod
run: go mod download
- name: Build
run: go build ./...
- name: Test
run: go test -v -race -shuffle=on ./...