mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
21 lines
491 B
YAML
21 lines
491 B
YAML
name: Windows CI
|
|
|
|
on: push
|
|
|
|
env:
|
|
MAVEN_ARGS: -V -B --no-transfer-progress -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
|
|
|
|
jobs:
|
|
windows:
|
|
name: 'Windows'
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: 'Set up JDK 21'
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: 21
|
|
- name: 'Test'
|
|
run: ./mvnw %MAVEN_ARGS% install
|