GH-226 - Introduce dedicated CI build for pull requests.

That new build skips the attempt to deploy artifacts to Artifactory.
This commit is contained in:
Oliver Drotbohm
2023-06-30 17:13:47 +02:00
parent 5e2da724da
commit a3ed26ea08
2 changed files with 25 additions and 2 deletions

25
.github/workflows/build-prs.yaml vendored Normal file
View File

@@ -0,0 +1,25 @@
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

View File

@@ -3,8 +3,6 @@ name: CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build: