Skip to content

a new approach

a new approach #387

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: Install correct make
run: choco install make
- name: Build and Test
id: buildAndTest
run: mvn clean install
shell: pwsh