This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
Feature/fix npe in case there is no metadata (#38) #98
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
name: CI | |
on: | |
pull_request: | |
merge_group: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "main" | |
jobs: | |
build_jdk_17: | |
name: Build with Java 17 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: microsoft | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml |