Skip to content

this might be it

this might be it #391

Workflow file for this run

name: Build
on:
push:
pull_request_target:
types: [labeled]
jobs:
build:
name: Build and Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 22
cache: 'maven'
- name: Build and Test
id: buildAndTest
run: mvn clean install "-DvcInstallPath=C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
shell: pwsh