mirror of
https://github.com/tiennm99/try-quarkus.git
synced 2026-06-09 04:20:07 +00:00
24 lines
453 B
YAML
24 lines
453 B
YAML
## A basic GitHub Actions workflow for your Quarkus application.
|
|
|
|
name: CI build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: 21
|
|
distribution: temurin
|
|
cache: maven
|
|
- name: Build
|
|
run: ./gradlew build
|