Skip to content

fixed path contains ':' (windows ...) #29

fixed path contains ':' (windows ...)

fixed path contains ':' (windows ...) #29

# This workflow will build a Java project with Maven
name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main, 'release-*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['17', '21']
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up JDKs with Matrix Build
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven Wrapper
run: ./mvnw clean verify