-
Notifications
You must be signed in to change notification settings - Fork 38
48 lines (41 loc) · 1.46 KB
/
pullrequest.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
name: PR
on:
pull_request:
branches: [ master, main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@163217dfcd28294438ea1c1c149cfaf66eec283e
- name: Set up JDK 8
uses: actions/setup-java@83a06ff9d9aa70f76a8d73278e646c20b2bf1ae5
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Initialize CodeQL
uses: github/codeql-action/init@af56b044b5d41c317aef5d19920b3183cb4fbbec
with:
languages: java
- name: Cache local Maven repository
uses: actions/cache@8469c94c6a180dfb41a1bd7e1b46ac557ea124f1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Verify with Maven
run: mvn --batch-mode --update-snapshots --activate-profiles e2e verify
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
flags: unittests # optional
name: coverage # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@af56b044b5d41c317aef5d19920b3183cb4fbbec