From 80d7e949c3581066d853b7f8bf6d9aa203c86100 Mon Sep 17 00:00:00 2001 From: Les Vogel Date: Tue, 22 Sep 2020 13:26:44 -0700 Subject: [PATCH] Update onpush.yml Try different steps --- .github/workflows/onpush.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/onpush.yml b/.github/workflows/onpush.yml index 882de374..b0d4d931 100644 --- a/.github/workflows/onpush.yml +++ b/.github/workflows/onpush.yml @@ -12,9 +12,11 @@ jobs: uses: actions/setup-java@v1 with: java-version: 11 - - name: Build, install & test with Maven - run: | - cd checkstyle-config && mvn -B clean install && cd .. - mvn -B clean verify - cd test && mvn -B -P lint clean verify - 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 + - name: notify CodeCov + run: bash <(curl -s https://codecov.io/bash)