Metro WSIT #282
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2021, 2023 Oracle and/or its affiliates. All rights reserved. | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Distribution License v. 1.0, which is available at | |
# http://www.eclipse.org/org/documents/edl-v10.php. | |
# | |
# SPDX-License-Identifier: BSD-3-Clause | |
# | |
name: Metro WSIT | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
name: Test on JDK ${{ matrix.java_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java_version: [ 17 ] | |
steps: | |
- name: Checkout for build | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java_version }} | |
- name: Verify | |
run: cd wsit && mvn -B -V -U -C -Dalltests=true -Pstaging,oss-release clean verify org.glassfish.copyright:glassfish-copyright-maven-plugin:check -Dgpg.skip=true |