From 30fc161c86b0e7c231bfafa6bede7020386e111c Mon Sep 17 00:00:00 2001 From: salalcroj Date: Thu, 12 Mar 2026 21:59:48 +0100 Subject: [PATCH] =?UTF-8?q?A=C3=B1adido=20DEVELOPERS.txt=20y=20actualizaci?= =?UTF-8?q?=C3=B3n=20de=20usuario=20en=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Primer script de integración continua Finalización de la P2: Incorporación de datos de desarrollador y scripts de CI --- .github/workflows/gradle.yml | 32 ++++++++++++++++++++++++++++++++ DEVELOPERS.txt | 1 + README.md | 2 ++ 3 files changed, 35 insertions(+) create mode 100644 .github/workflows/gradle.yml create mode 100644 DEVELOPERS.txt diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 00000000..21937764 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,32 @@ +# Flujo de trabajo para construir el código al hacer push o pull_request en la rama desarrollo +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Integración continua con Gradle (gradlew) + +on: + push: + branches: [ desarrollo ] + pull_request: + branches: [ desarrollo ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' + - name: Dar permisos a gradlew + run: chmod +x gradlew + - name: Construir el código con gradlew + run: ./gradlew build diff --git a/DEVELOPERS.txt b/DEVELOPERS.txt new file mode 100644 index 00000000..2b19b330 --- /dev/null +++ b/DEVELOPERS.txt @@ -0,0 +1 @@ +Salvador Alcántara Rojas \ No newline at end of file diff --git a/README.md b/README.md index a574ce6c..527a5d0c 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ Librería con capacidades que den soporte al desarrollo de aplicaciones para la ## [Página en gitHub Pages](https://mit-fs.github.io/Audit4Improve-API/) + +Soy el usuario salalcroj \ No newline at end of file