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 e539631 commit b1f9679Copy full SHA for b1f9679
.github/workflows/onpush.yml
@@ -12,9 +12,11 @@ jobs:
12
uses: actions/setup-java@v1
13
with:
14
java-version: 11
15
- - name: Build, install & test with Maven
16
- run: |
17
- cd checkstyle-config && mvn -B clean install && cd ..
18
- mvn -B clean verify
19
- cd test && mvn -B -P lint clean verify
20
- bash <(curl -s https://codecov.io/bash)
+ - name: Build & Install checkstyle-config
+ run: cd checkstyle-config && mvn -B clean install && cd ..
+ - name: Build root
+ run: mvn -B clean verify
+ - name: Test lint
+ run: cd test && mvn -B -P lint clean verify
21
+ - name: notify CodeCov
22
+ run: bash <(curl -s https://codecov.io/bash)
0 commit comments