Added javadoc and source plugins #5
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
name: YDB Hibernate Dialect V5 CI with Maven | |
on: | |
push: | |
paths: | |
- 'hibernate-dialect-v5/**' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'hibernate-dialect-v5/**' | |
types: | |
- opened | |
- reopened | |
- edited | |
env: | |
MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
jobs: | |
build: | |
name: YDB Java Hibernate Dialect V5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8', '11', '17' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK ${{matrix.java}} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{matrix.java}} | |
distribution: 'temurin' | |
cache: maven | |
- name: Run tests with Maven | |
run: | | |
cd hibernate-dialect-v5 | |
mvn $MAVEN_ARGS test |