Files
spring-modulith/.github/workflows/build-prs.yaml
Oliver Drotbohm a3ed26ea08 GH-226 - Introduce dedicated CI build for pull requests.
That new build skips the attempt to deploy artifacts to Artifactory.
2023-06-30 17:13:47 +02:00

26 lines
405 B
YAML

name: PR Build
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Check out sources
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Build with Maven
run: ./mvnw -B