Skip to content

feature. change registry to harbor #205

feature. change registry to harbor

feature. change registry to harbor #205

Workflow file for this run

name: Lint
on:
push:
tags:
- v*
branches:
- main
- develop
- release
pull_request:
branches:
- main
- develop
- release
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: false
- name: Install golangci-lint
# Install golangci-lint from source instead of using
# golangci-lint-action to ensure the golangci-lint binary is built with
# the same Go version we're targeting.
# Avoids incompatibility issues such as:
# - https://github.com/golangci/golangci-lint/issues/2922
# - https://github.com/golangci/golangci-lint/issues/2673
# - https://github.com/golangci/golangci-lint-action/issues/442
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2
- name: Run golangci-lint
run: golangci-lint run --verbose --out-format=github-actions