Skip to content

Commit

Permalink
ci: separate lint and test
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
  • Loading branch information
sagikazarmark committed Sep 22, 2021
1 parent 1a7008f commit 552e3bd
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:

jobs:
build:
name: Build
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
# Fail fast is disabled because there are Go version specific features and tests
Expand All @@ -18,9 +18,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ['1.14', '1.15', '1.16', '1.17']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org

steps:
- name: Set up Go
Expand All @@ -31,10 +29,25 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Test
run: go test -race -v ./...

lint:
name: Lint
runs-on: ubuntu-latest
env:
GOFLAGS: -mod=readonly

steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17

- name: Checkout code
uses: actions/checkout@v2

- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.40.1

- name: Test
run: go test -race -v ./...

0 comments on commit 552e3bd

Please sign in to comment.