Skip to content

Bump docker/build-push-action from 4.0.0 to 4.1.1 #275

Bump docker/build-push-action from 4.0.0 to 4.1.1

Bump docker/build-push-action from 4.0.0 to 4.1.1 #275

Workflow file for this run

name: Go
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go environment
uses: actions/[email protected]
with:
go-version: 1.20.1
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...