Skip to content

Commit 94adfa2

Browse files
committed
Added pullrequest workflow
1 parent 463fba5 commit 94adfa2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pullrequest.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)