only run linters with go 1.19
This commit is contained in:
parent
b80901bbb4
commit
da8d230a5b
|
|
@ -4,7 +4,7 @@ shared_configs:
|
|||
- run:
|
||||
name: Run tests
|
||||
command: |
|
||||
make ci
|
||||
make test
|
||||
|
||||
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
|
||||
version: 2.1
|
||||
|
|
@ -25,7 +25,12 @@ jobs:
|
|||
working_directory: ~/repo
|
||||
docker:
|
||||
- image: cimg/go:1.19
|
||||
steps: *simple_job_steps
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Run tests and linters
|
||||
command: |
|
||||
make ci
|
||||
|
||||
workflows:
|
||||
pr-build-test:
|
||||
|
|
|
|||
Loading…
Reference in New Issue