Init Workflow development for the project #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lokaler Merge Workflow | |
on: | |
# push: | |
# paths: | |
# - 'backend/**' | |
pull_request: | |
jobs: | |
merge_locally: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Merge PR into target branch locally | |
run: git merge ${{ github.base_ref }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Run local tests | |
run: mvn --batch-mode --update-snapshots --no-transfer-progress -f backend/pom.xml verify |