Skip to content

attempt to run integration tests on windows #283

attempt to run integration tests on windows

attempt to run integration tests on windows #283

Workflow file for this run

name: 'build test'
on:
push:
branches: [ tc-win ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest ]
java: [ 25 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build and test
shell: bash
run: mvn clean verify -U