From 63d34a43c0bacf0fea90064205ba3f67d7c3fcf4 Mon Sep 17 00:00:00 2001 From: jesvinser Date: Sat, 22 Mar 2025 22:40:51 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Se=20realiza=20un=20squash=20para=20poder?= =?UTF-8?q?=20unificar=20todos=20los=20commits=20en=20uno=20solo:=20DEVELO?= =?UTF-8?q?PERS.txt=20a=C3=B1adido=20y=20fichero=20README.md=20modificado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ src/main/resources/DEVELOPERS.txt | 1 + 2 files changed, 3 insertions(+) create mode 100644 src/main/resources/DEVELOPERS.txt diff --git a/README.md b/README.md index a574ce6c..52d9e900 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 jesvinser + diff --git a/src/main/resources/DEVELOPERS.txt b/src/main/resources/DEVELOPERS.txt new file mode 100644 index 00000000..7e8b921c --- /dev/null +++ b/src/main/resources/DEVELOPERS.txt @@ -0,0 +1 @@ +Jesús Vinuesa \ No newline at end of file From 5a81493523b81045d31531d15460bb623996a85b 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 2/2] =?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