enhance active monitor update #476
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
name: build | |
# La acción se va a correr ante un 'push' o 'pull request' en la rama 'develop-v3.0'. | |
on: | |
push: | |
branches: [ "develop-v3.0" ] | |
pull_request: | |
branches: [ "develop-v3.0" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Verificar que corra en Ubuntu es suficiente. | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 22+ | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: maven | |
- name: Set up Maven version | |
uses: stCarolas/setup-maven@v4.5 | |
with: | |
maven-version: 3.9.6 | |
- name: Build with Maven | |
run: xvfb-run mvn -B package --file pom.xml |