Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Run travis tests with N-1 version of Go (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasanaya authored and black-adder committed Dec 21, 2018
1 parent 68407ce commit 2816504
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ matrix:
env:
- TESTS=true
- USE_DEP=true
- go: 1.10.5
env:
- TESTS=true
- USE_DEP=true
- CI_SKIP_LINT=true

services:
- docker
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,8 @@ install-ci: install-dep-ci install
.PHONY: test-ci
test-ci:
@./scripts/cover.sh $(shell go list $(PACKAGES))
ifeq ($(CI_SKIP_LINT),true)
echo 'skipping lint'
else
make lint

endif

0 comments on commit 2816504

Please sign in to comment.