Skip to content

Merge pull request #37 from nabeken/github-renovate/all-minor-patch #179

Merge pull request #37 from nabeken/github-renovate/all-minor-patch

Merge pull request #37 from nabeken/github-renovate/all-minor-patch #179

Workflow file for this run

name: Go
on:
- push
- pull_request
env:
# renovate: datasource=golang-version depName=golang
GO_VERSION: '1.21.0'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
with:
go-version: '${{ env.GO_VERSION }}'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...