update tck, fix sig tests #29
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) 2023 Oracle and/or its affiliates. All rights reserved. | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License v. 2.0, which is available at | |
# http://www.eclipse.org/legal/epl-2.0. | |
# | |
# This Source Code may also be made available under the following Secondary | |
# Licenses when the conditions for such availability set forth in the | |
# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | |
# version 2 with the GNU Classpath Exception, which is available at | |
# https://www.gnu.org/software/classpath/license.html. | |
# | |
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | |
# | |
name: Jakarta Annotations API | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
name: Test on JDK ${{ matrix.java_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java_version: [ 21 ] | |
steps: | |
- name: Checkout for build | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java_version }} | |
cache: maven | |
- name: Verify | |
# GH runs against the merge done in the current year, so let's just check modified files do have some copyright | |
run: | | |
cd api | |
mvn -B -U -C -V clean verify org.glassfish.copyright:glassfish-copyright-maven-plugin:check -Poss-release -Dgpg.skip=true -Dcopyright.ignoreyear=true |