generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b58a799
commit e1b6abf
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,22 +25,22 @@ jobs: | |
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: 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: 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: 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 | ||
|