From 175b55fe12f697bb5a124688f3122feb8d35bab5 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 1/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 From 2e8f2fd443714f3b8e3b651092fc2c3e7b3e9f02 Mon Sep 17 00:00:00 2001 From: braburgut Date: Sun, 23 Mar 2025 11:26:22 +0100 Subject: [PATCH 2/2] Cambios en README.md y nuevo fichero DEVELOPERS.txt Prueba2 --- DEVELOPERS.txt | 1 + README.md | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 DEVELOPERS.txt diff --git a/DEVELOPERS.txt b/DEVELOPERS.txt new file mode 100644 index 00000000..44200147 --- /dev/null +++ b/DEVELOPERS.txt @@ -0,0 +1 @@ +Brayan Burgos Gutierrez \ No newline at end of file diff --git a/README.md b/README.md index a574ce6c..6f981ddc 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 braburgut \ No newline at end of file