Skip to content

Commit

Permalink
Rename basic static checks to "Verify"
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh committed Jun 9, 2021
1 parent a1e7d1a commit 2274c42
Showing 1 changed file with 8 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Sanity Checks
name: Verify

on:
push:
Expand All @@ -14,8 +14,8 @@ on:
- master

jobs:
build:
name: Sanity Checks
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
Expand All @@ -35,17 +35,8 @@ jobs:
go get honnef.co/go/tools/cmd/staticcheck
popd
- name: Sanity Check (go vet)
run: make govet

- name: Sanity Check (ineffassign)
run: make ineffassign

- name: Sanity Check (golint)
run: make golint

- name: Sanity Check (misspell)
run: make misspell

- name: Sanity Check (staticcheck)
run: make staticcheck
- run: make govet
- run: make ineffassign
- run: make golint
- run: make misspell
- run: make staticcheck

0 comments on commit 2274c42

Please sign in to comment.