Skip to content

Update build.yml

Update build.yml #19

Workflow file for this run

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
- name: List files in target directory
run: ls -R ./
# Mover el reporte de cobertura a la raíz del proyecto
- name: Move coverage report to project root
run: |
mkdir -p coverage
cp SYG-bootstrap/target/site/jacoco-aggregate/* coverage/