-
Notifications
You must be signed in to change notification settings - Fork 5
78 lines (64 loc) · 1.81 KB
/
ci.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# © 2024. TU Dortmund University,
# Institute of Energy Systems, Energy Efficiency and Energy Economics,
# Research group Distribution grid planning and operation
#
name: CI
on:
push:
branches:
- main
- dev
- 'feature/*'
- 'hotfix/*'
- 'release/*'
pull_request:
branches:
- main
- dev
jobs:
build:
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Check Branch & Files
run: |
git config --global --add safe.directory /__w/simona/simona
git rev-parse --abbrev-ref HEAD
pwd
ls -la
- name: Checking Gradle & Java
run: |
java -version && gradle --version
- name: Running Tests
run: |
./gradlew --no-daemon --info --refresh-dependencies spotlessCheck pmdMain pmdTest test
- name: Generate JavaDoc
run: |
./gradlew javadoc
test:
needs: build
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
services:
docker:
image: docker:19.03.12
options: --privileged
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Running Tests
run: |
./gradlew --no-daemon --info --refresh-dependencies spotlessCheck pmdMain pmdTest test
- name: Generate JavaDoc
run: |
./gradlew javadoc