Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions DEVELOPERS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Brayan Burgos Gutierrez
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading