Porting to 1.21 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build" | |
on: | |
pull_request: # Triggered on pull requests to any branch | |
push: | |
branches: # Additionally, trigger on push events to specific branches | |
- master | |
jobs: | |
backend-build: | |
runs-on: ubuntu-latest | |
name: Quarkus build test | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Build with Gradle | |
run: ./gradlew build |