diff --git a/.github/workflows/oracle18.yml b/.github/workflows/oracle18.yml new file mode 100644 index 000000000..9d29ee24e --- /dev/null +++ b/.github/workflows/oracle18.yml @@ -0,0 +1,38 @@ + +name: Oracle18 + +on: + workflow_dispatch: + schedule: + - cron: '10 6 * * 1,4' + +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@v2 + - name: Set up Java + uses: actions/setup-java@v2 + with: + java-version: ${{ matrix.java_version }} + distribution: 'zulu' + - name: Maven cache + uses: actions/cache@v2 + env: + cache-name: maven-cache + with: + path: + ~/.m2 + key: build-${{ env.cache-name }} + - name: postgres + run: mvn clean test -Dprops.file=testconfig/ebean-oracle.properties