-
Notifications
You must be signed in to change notification settings - Fork 67
46 lines (40 loc) · 1.14 KB
/
optaplanner-9.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
46
# Runs the SonarCloud analysis of the optaplanner main branch after a PR is merged.
name: OptaPlanner 9
on:
pull_request:
types: [ opened, synchronize, reopened, labeled ]
branches:
- main
paths-ignore:
- 'LICENSE*'
- '.gitignore'
- '**.md'
- '**.adoc'
- '*.txt'
- '.ci/**'
defaults:
run:
shell: bash
jobs:
optaplanner-9:
name: ${{ matrix.os }} - Java ${{ matrix.java-version }}
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 17 ]
maven-version: [ '3.9.3' ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Java and Maven Setup
uses: kiegroup/kie-ci/.ci/actions/maven@main
with:
java-version: ${{ matrix.java-version }}
maven-version: ${{ matrix.maven-version }}
cache-key-prefix: ${{ runner.os }}-${{ matrix.java-version }}-maven${{ matrix.maven-version }}
- name: Build with Maven
run: mvn -B --fail-at-end clean install -Dfull -Dformatter.skip