Skip to content

chore: Update deps; move to kingpin/v2 on github. #94

chore: Update deps; move to kingpin/v2 on github.

chore: Update deps; move to kingpin/v2 on github. #94

Workflow file for this run

name: Go
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21"
- name: Golangci-lint
uses: golangci/golangci-lint-action@v2.5.2
- name: Build
run: make build
- name: Test
run: make test
- name: E2E test
run: make e2e-test