Skip to content

use github, renovate, release binary, release docker image, added a t… #1

use github, renovate, release binary, release docker image, added a t…

use github, renovate, release binary, release docker image, added a t… #1

name: Go Lint and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-and-test: # This is the job ID
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
# renovate: datasource=golang-version
go-version: '1.20'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
- name: Run tests
run: go test -v ./...