Skip to content

feat: add docker support with workflow to update image #71

feat: add docker support with workflow to update image

feat: add docker support with workflow to update image #71

Workflow file for this run

name: build-lint-test
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Install dependencies
run: go get .
- name: Vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...