Skip to content

Set JDialog parent window. #51

Set JDialog parent window.

Set JDialog parent window. #51

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
actions: write
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Install dependencies and run tests
run: mvn clean install
- name: Archive test results
if: always()
uses: actions/upload-artifact@v3
with:
name: junit-test-results
path: target/surefire-reports/*.xml