-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (31 loc) · 1006 Bytes
/
checkstyle.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
name: Checkstyle CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: 'davidson-consulting/tlpc-sensor'
path: './tlpc-sensor'
- uses: actions/checkout@v2
with:
repository: 'davidson-consulting/j-joules'
path: './j-joules'
- uses: actions/checkout@v2
with:
repository: 'davidson-consulting/junit-jjoules'
path: './junit-jjoules'
- name: Install TLPC-Sensor Java adapter
run: mvn clean install -DskipTests -f tlpc-sensor/examples/tlpc-sensor/pom.xml
- name: Install JJoules
run: mvn clean install -DskipTests -f j-joules/pom.xml
- name: Install JUnit-JJoules
run: mvn clean install -DskipTests -f junit-jjoules/pom.xml
- name: Checkstyle with Maven
run: mvn checkstyle:checkstyle -DskipTests