From 10e29bd4ba5b7eb71ec6e3c780bdababfc9eeeea Mon Sep 17 00:00:00 2001 From: solmunjim Date: Mon, 17 Mar 2025 18:45:43 +0100 Subject: [PATCH 1/3] =?UTF-8?q?A=C3=B1adido=20los=20ficheros?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a574ce6c..6c7f1593 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 solmunjim" + From 45e25d23ca35ae693317b7aefd69c21011789c29 Mon Sep 17 00:00:00 2001 From: solmunjim Date: Mon, 17 Mar 2025 18:46:50 +0100 Subject: [PATCH 2/3] =?UTF-8?q?Fichero=20a=C3=B1adido=20con=20nombre?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DEVELOPERS.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 DEVELOPERS.txt diff --git a/DEVELOPERS.txt b/DEVELOPERS.txt new file mode 100644 index 00000000..09c6e763 --- /dev/null +++ b/DEVELOPERS.txt @@ -0,0 +1 @@ +Soledad Muñoz Jiménez \ No newline at end of file From d0f83995b75cf11a1f67f188d2378adf0741dc6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Factor=C3=ADa=20de=20Software?= <71695310+MIT-FS@users.noreply.github.com> Date: Thu, 3 Mar 2022 18:05:26 +0100 Subject: [PATCH 3/3] =?UTF-8?q?Primer=20script=20de=20integraci=C3=B3n=20c?= =?UTF-8?q?ontinua?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Este flujo construye el código usando gradlew (embebido en el proyecto) --- .github/workflows/gradle.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/gradle.yml 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