Skip to content

Commit

Permalink
gh actions: add lint lane
Browse files Browse the repository at this point in the history
let's add tier-0 (static check) lanes, starting with the lint lane
featuring golang-ci lint

Signed-off-by: Francesco Romani <fromani@redhat.com>
  • Loading branch information
ffromani committed Nov 19, 2021
1 parent e71129b commit 51fecde
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ jobs:
- name: format
run: ./hack/check-format.sh

lint:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Verify
uses: golangci/golangci-lint-action@v2
with:
version: v1.41.1
args: --timeout=15m0s --verbose

# tier-1
# main development platfotm, gets features first and it's most tested
build-ubuntu-2004:
Expand Down

0 comments on commit 51fecde

Please sign in to comment.