Skip to content

Display error output if pushing to remote registry fails #69

Display error output if pushing to remote registry fails

Display error output if pushing to remote registry fails #69

Workflow file for this run

name: Test & lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Install dependencies
run: |
go version
go install golang.org/x/lint/golint@latest
- name: Run vet & lint
run: |
go vet .
golint .
- name: Run tests
run: go test -v ./...