Skip to content

Commit

Permalink
crear github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ing-Brayan-Martinez committed Apr 22, 2024
1 parent cf42138 commit b0476df
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Kotlin Continuous Integration

on:
push:
branches: [ main ]

pull_request:
branches: [ main ]

jobs:

build-and-test:

runs-on: ubuntu-latest

steps:
- name: Checkout GitHub Actions
uses: actions/checkout@v2

- name: Set up OpenJDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Build with Maven
run: mvn install

0 comments on commit b0476df

Please sign in to comment.