We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b800b0 + 4ee936d commit 2627d9dCopy full SHA for 2627d9d
1 file changed
.travis.yml
@@ -7,11 +7,13 @@ addons:
7
- dnsutils
8
- jsonlint
9
before_install:
10
- - if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(.md)|(.pem)|(.pdf)|(.html)|^(LICENSE)|^(docs)|^(utils)|^(bin)|(Dockerfile)'
+ - |
11
+ echo "Checking if a CI run is needed post commit: ${TRAVIS_COMMIT_RANGE}"
12
+ if ! git diff --name-only ${TRAVIS_COMMIT_RANGE} | grep -qvE '(\.md$)|(\.pem$)|(\.pdf$)|(\.html$)|^(LICENSE)|^(docs)|^(utils)|^(bin)|(Dockerfile)'
13
then
- echo "no code was updated, not running the CI."
14
+ echo "No code was updated, not running the CI."
15
exit
- fi
16
+ fi
17
install:
18
- cpanm --notest Test::More
19
- cpanm --notest Data::Dumper
0 commit comments