mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
|
|
name: ebean EA
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '39 6 * * 1,3,5'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
## valhalla - failing on javadoc with:
|
|
## javadoc: error - The code being documented uses packages in the unnamed module, but the packages defined in https://ebean.io/platforms/ebean-platform-h2/apidocs/ are in named modules.
|
|
java_version: [GA,EA,loom,metropolis,panama]
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Java
|
|
uses: oracle-actions/setup-java@v1
|
|
with:
|
|
website: jdk.java.net
|
|
release: ${{ matrix.java_version }}
|
|
- name: Maven cache
|
|
uses: actions/cache@v2
|
|
env:
|
|
cache-name: maven-cache
|
|
with:
|
|
path:
|
|
~/.m2
|
|
key: build-${{ env.cache-name }}
|
|
- name: Maven version
|
|
run: mvn --version
|
|
- name: Build with Maven
|
|
run: mvn package
|
|
|