From 7a09365c25f8739d102178a711b3b5079eb1a2ca Mon Sep 17 00:00:00 2001 From: guamarmor Date: Mon, 17 Mar 2025 18:44:16 +0100 Subject: [PATCH 1/2] =?UTF-8?q?a=C3=B1adidos=20los=20ficheros=20developers?= =?UTF-8?q?=20y=20readme=20cambiado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a574ce6c..cfc90ea2 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,4 @@ 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 guamarmor \ No newline at end of file From aa821e8a9f119f69d8f72c0b3c30104d5c69f8de Mon Sep 17 00:00:00 2001 From: guamarmor Date: Mon, 17 Mar 2025 18:46:20 +0100 Subject: [PATCH 2/2] =?UTF-8?q?developer=20a=C3=B1adido?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Añadido archivo DEVELOPERS.txt y cambiar el README.md Este flujo construye el código usando gradlew (embebido en el proyecto) --- .github/workflows/gradle.yml | 32 ++++++++++++++++++++++++++++++++ DEVELOPERS.txt | 1 + 2 files changed, 33 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..c130a5d9 --- /dev/null +++ b/DEVELOPERS.txt @@ -0,0 +1 @@ +Guadalupe Martin Moruno \ No newline at end of file