Skip to content

Task#44: Add maven build and test on repository #13

Task#44: Add maven build and test on repository

Task#44: Add maven build and test on repository #13

Workflow file for this run

name: Quarkus CI with Maven
branding:

Check failure on line 2 in .github/workflows/maven.yml

View workflow run for this annotation

GitHub Actions / Quarkus CI with Maven

Invalid workflow file

The workflow is not valid. .github/workflows/maven.yml (Line: 2, Col: 1): Unexpected value 'branding'
icon: 'box'
color: 'blue'
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Build with Maven and tests
run: mvn -B package --file pom.xml