Skip to content

updating go.mod to 1.21 in github workflow build #40

updating go.mod to 1.21 in github workflow build

updating go.mod to 1.21 in github workflow build #40

Workflow file for this run

name: Go
on:
push:
branches: [ "workflows", "main" ]
pull_request:
branches: [ "workflows", "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make build
env:
GOFLAGS: "-mod=vendor"
- name: Test
run: make test
env:
GOFLAGS: "-mod=vendor"