Java: Implement visual regions and refactor diffing options #121
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: Java (build) | |
on: | |
push: | |
paths: | |
- 'visual-java/**' | |
- .github/workflows/java-build.yml | |
pull_request: | |
paths: | |
- 'visual-java/**' | |
- .github/workflows/java-build.yml | |
defaults: | |
run: | |
working-directory: visual-java | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml |