diff options
author | Álex González <agonzalezro@gmail.com> | 2018-03-04 22:36:06 +0100 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-05 18:16:25 +0000 |
commit | 649e4f07a3809b2522b593714780dbdfad06c771 (patch) | |
tree | 0cfc9ad0452a67e57a666ff68e2f074210d92d01 /.travis.yml | |
parent | 4f4a78abb40fa0e8407e8a55d5a67a2650d8fd96 (diff) | |
download | podman-649e4f07a3809b2522b593714780dbdfad06c771.tar.gz podman-649e4f07a3809b2522b593714780dbdfad06c771.tar.bz2 podman-649e4f07a3809b2522b593714780dbdfad06c771.zip |
Run gofmt and lint just for one Go version
Also, "make docs" is part of "make all" so the step was being repeated.
Signed-off-by: Álex González <agonzalezro@gmail.com>
Closes: #449
Approved by: mheon
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 893ab0aab..138a9c9f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,16 +27,14 @@ jobs: script: - make gofmt - make lint + go: 1.9.x + - script: - make testunit - - make docs - make go: 1.8.x - stage: Build and Verify script: - - make gofmt - - make lint - make testunit - - make docs - make go: 1.9.x - stage: Integration Test |