-
Notifications
You must be signed in to change notification settings - Fork 11
45 lines (43 loc) · 1.1 KB
/
maven.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Java Continuous Integration
on:
push:
branches:
- master
# Ignore changes in documentation and reports
paths-ignore:
- 'showcase-quarkus-eventsourcing/native-image-agent-results/**'
- '**/*.md'
- '**/*.txt'
- '.gitignore'
- '.gitattributes'
- 'renovate.json'
- 'changelogTemplate.mustache'
pull_request:
branches:
- master
# Ignore changes in documentation and reports
paths-ignore:
- 'showcase-quarkus-eventsourcing/native-image-agent-results/**'
- '**/*.md'
- '**/*.txt'
- '.gitignore'
- '.gitattributes'
- 'renovate.json'
- 'changelogTemplate.mustache'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
working-directory: showcase-quarkus-eventsourcing
run: mvn -B package --file pom.xml