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 8ad4c3c commit 1e2170dCopy full SHA for 1e2170d
.github/workflows/build-pr.yml
@@ -0,0 +1,23 @@
1
+name: build PR
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Java
15
+ uses: actions/setup-java@v2
16
+ with:
17
+ java-version: '8'
18
+ distribution: 'zulu'
19
+ cache: 'maven'
20
+ - name: Set up CI environment
21
+ run: .github/setup.sh
22
+ - name: Execute the build
23
+ run: .github/build.sh
0 commit comments