Skip to content

Commit

Permalink
Change order to run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wpjunior committed Apr 5, 2022
1 parent 55caa8b commit 6a31369
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ name: CI
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.16
- run: make test

lint:
runs-on: ubuntu-18.04
steps:
Expand All @@ -22,15 +31,6 @@ jobs:
env:
GOROOT: ""

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.16
- run: make test

integration:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 6a31369

Please sign in to comment.