Skip to content

Change go.mod to use 1.17 #3

Change go.mod to use 1.17

Change go.mod to use 1.17 #3

Workflow file for this run

name: Build Go binary
on:
push:
branches:
- "go-cmd"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.17.x"
- name: Install dependencies
run: go get .
- name: Build
run: go build -o insta-infra .