Skip to content

Commit

Permalink
Merge pull request #25 from jacobdotcosta/github-actions-impl
Browse files Browse the repository at this point in the history
CI GitHub action
  • Loading branch information
jacobdotcosta authored Jun 17, 2022
2 parents 83246ca + 46e2706 commit b3b819f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Quarkus CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
# - name: Validate Gradle wrapper
# uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
# - name: Build with Gradle
# uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
# with:
# arguments: quarkusBuild
# run: ./gradlew quarkusBuild --scan
- name: Run build with Gradle wrapper
run: ./gradlew quarkusBuild

0 comments on commit b3b819f

Please sign in to comment.