We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 463fba5 commit 94adfa2Copy full SHA for 94adfa2
.github/workflows/pullrequest.yml
@@ -0,0 +1,17 @@
1
+name: Pull Request
2
+on:
3
+ pull_request:
4
+ branches: [ master ]
5
+jobs:
6
+ build:
7
+ if: github.repository == 'mirkosertic/MetaIR'
8
+ environment: ci
9
+ runs-on: 'ubuntu-latest'
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-java@v4
13
+ with:
14
+ java-version: 25
15
+ distribution: "temurin"
16
+ cache: maven
17
+ - run: mvn --no-transfer-progress --batch-mode --settings .mvn/settings.xml clean javadoc:jar verify
0 commit comments