-
Notifications
You must be signed in to change notification settings - Fork 11
50 lines (43 loc) · 1.18 KB
/
pull-requests.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
name: Actions on pull requests
on:
pull_request:
branches:
- develop
- master
jobs:
build-java:
name: Build & Test backend
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4
- name: Step 2 - Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Step 3 - Build & Test
run: mvn clean verify -ntp
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
${{ github.workspace }}/**/*.jar
${{ github.workspace }}/**/Dockerfile
overwrite: false
if-no-files-found: error
- name: Step 4 - Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
build-frontend:
uses: ./.github/workflows/frontend.yml
secrets: inherit
# temporarily
dockerhub:
needs: [ build-java, build-frontend ]
uses: ./.github/workflows/dockerhub.yml
secrets: inherit