Skip to content

Commit

Permalink
ci: Change lint job to verify
Browse files Browse the repository at this point in the history
This way we check more than just linting and don't need to have
one job for each and every check.

Signed-off-by: Manuel Mendez <[email protected]>
  • Loading branch information
mmlb committed Oct 6, 2021
1 parent 654ee54 commit 8a5b9fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
CGO_ENABLED: 0

jobs:
lint:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -15,8 +15,8 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: "1.17.0"
- name: make lint
run: make lint
- name: make verify
run: make verify
test:
runs-on: ubuntu-latest
steps:
Expand All @@ -43,8 +43,8 @@ jobs:
runs-on: ubuntu-latest
needs:
- ci-checks
- lint
- test
- verify
steps:
- name: fake
run: echo ":+1:"
Expand Down

0 comments on commit 8a5b9fc

Please sign in to comment.