We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c673d6a commit dd07381Copy full SHA for dd07381
.github/workflows/build-main.yml
@@ -9,7 +9,7 @@ jobs:
9
build:
10
strategy:
11
matrix:
12
- os: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest]
13
14
runs-on: ${{ matrix.os }}
15
steps:
@@ -44,12 +44,9 @@ jobs:
44
restore-keys: |
45
${{ runner.os }}-build-${{ env.cache-name }}-
46
47
- # since we also build on Windows Powershell, we need to add a space between -D maven.javadoc.skip=true
48
- # otherwise the build will fail https://stackoverflow.com/questions/38051787/maven-javadoc-skip-true-throws-an-error
49
- name: Build with Maven
50
run: |
51
- mvn -B spring-javaformat:apply --no-transfer-progress
52
- mvn -B verify -P coverage --no-transfer-progress -D maven.javadoc.skip=true
+ mvn -B clean verify -Drevision=${TRAVIS_TAG}}
53
54
- uses: codecov/codecov-action@v2
55
with:
0 commit comments