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 57326c7 commit 3f05b87Copy full SHA for 3f05b87
.github/workflows/maven.yml
@@ -5,16 +5,18 @@ name: Test PR
5
6
on:
7
pull_request:
8
- branches: [ master ]
+ branches: [ main ]
9
10
jobs:
11
build:
12
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v2
15
- - name: Set up JDK 1.8
16
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v3
+ - name: Set up JDK 8
+ uses: actions/setup-java@v3
17
with:
18
- java-version: 1.8
+ distribution: 'corretto'
19
+ java-version: 8
20
+ architecture: x64
21
- name: Build and test with Maven
- run: mvn test -Ptest-output
22
+ run: mvn -ntp -B test -Ptest-output
0 commit comments