Skip to content

Add info for configuration bot. #43

Add info for configuration bot.

Add info for configuration bot. #43

Workflow file for this run

name: build
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Set up path
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go mod download
go mod verify
- name: Build
run: make build
- name: Test
run: make test