We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4c8ff commit 4cb2687Copy full SHA for 4cb2687
.travis.yml
@@ -3,9 +3,11 @@ language: go
3
sudo: false
4
5
branches:
6
- only:
7
- # - master
8
- # - integration
+ except:
+ # skip tags build, we are building branch and master that is enough for
+ # consistenty check and release. Let's use Travis CI resources optimally
9
+ # for aah framework.
10
+ - /^v[0-9]\.[0-9]/
11
12
go:
13
- 1.6
@@ -16,7 +18,7 @@ go:
16
18
go_import_path: aahframework.org/essentials.v0-unstable
17
19
20
script:
- - bash go.test.sh
21
+ - bash <(curl -s https://aahframework.org/go-test)
22
23
after_success:
24
- bash <(curl -s https://codecov.io/bash)
go.test.sh
0 commit comments