Skip to content

feat: Open file in file manager (e.g. Finder or Explorer) (#9) #60

feat: Open file in file manager (e.g. Finder or Explorer) (#9)

feat: Open file in file manager (e.g. Finder or Explorer) (#9) #60

Workflow file for this run

name: Java CI with Maven
on: [ push, pull_request ]
jobs:
build-non-macos:
strategy:
matrix:
java-version: [ 17, 21 ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn clean package --batch-mode --threads 4
build-macos:
strategy:
matrix:
java-version: [ 17, 21 ]
os: [ macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn clean package --batch-mode --threads 4 -Pmacos