generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (44 loc) · 1.33 KB
/
build.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: Build
on:
push:
branches:
- master
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
backend-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: syg-backend
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean verify
# Mover el reporte de cobertura a la raíz del proyecto
- name: Move coverage report to project root
run: |
mkdir -p coverage
cp -r SYG-bootstrap/target/site/jacoco-aggregate/jacoco.csv coverage/
cp -r SYG-bootstrap/target/site/jacoco-aggregate/index.html coverage/
- name: Configurar Git para el commit
run: |
git config --global user.name "AlvaroGlezC"
git config --global user.email "[email protected]"
- name: Hacer commit y push de la cobertura
run: |
git add -f coverage
git commit -m "Agregar reporte de cobertura"
git push
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: SYG-bootstrap/target/site/jacoco-aggregate/jacoco.xml