DB2 LUW #309
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: DB2 LUW | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '10 8 * * 2,5' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: [11] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java_version }} | |
distribution: 'adopt' | |
- name: Maven cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: maven-cache | |
with: | |
path: | |
~/.m2 | |
key: build-${{ env.cache-name }} | |
- name: db2 | |
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-db2.properties |