-
Notifications
You must be signed in to change notification settings - Fork 260
49 lines (46 loc) · 1.26 KB
/
build.yaml
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
name: build
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: "0 6 * * *"
env:
# https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080
MAVEN_OPTS: >-
-Dhttp.keepAlive=false
-Dmaven.wagon.http.pool=false
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
profile: ['']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
base-ref: ${{ github.event.pull_request.base.sha || '0.1.0' }}
head-ref: ${{ github.event.pull_request.head.sha || github.ref }}
vulnerability-check: true
license-check: false
comment-summary-in-pr: on-failure
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Compile
run: ./mvnw clean package -DskipTests
- name: Test
run: ./mvnw verify -P "${{ matrix.profile }}" -B
- name: Coverage
if: github.event_name != 'pull_request'
run: ./mvnw -P coverage coveralls:report -B -D repoToken=${{ secrets.COVERALLS_TOKEN }}