We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37e5618 + cfb24ca commit 1c2fc0bCopy full SHA for 1c2fc0b
.pre-commit-config.yaml
@@ -15,3 +15,4 @@ repos:
15
- --indent=2
16
- --no-sort-keys
17
- id: check-merge-conflict
18
+ - id: check-yaml
.travis.yml
@@ -0,0 +1,17 @@
1
+language: java
2
+dist: bionic
3
+jdk: openjdk11
4
+env:
5
+ global:
6
+ - PYENV_VERSION=3.7
7
+install:
8
+ - pip3 install --user pre-commit
9
+script:
10
+ - pre-commit run --all-files --verbose
11
+ - cd "$TRAVIS_BUILD_DIR/"
12
+ # from Maven 3.6.1+, should use `--no-transfer-progress` instead of Slf4jMavenTransferListener
13
+ - >
14
+ mvn
+ -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
+ -B
+ clean verify
0 commit comments