ci-cd-test/.github/workflows/maven.yml

27 lines
467 B
YAML
Raw Normal View History

2024-10-19 16:05:29 +02:00
name: Java CI with Maven
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@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
2024-10-19 16:17:59 +02:00
run: mvn -B compile
2024-10-19 16:05:29 +02:00
- name: Run tests
2024-10-19 16:17:59 +02:00
run: mvn -B test