Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Aug 8, 2024
1 parent d324d4c commit 7dd3408
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ concurrency:
jobs:
run_examples:
name: Run examples in '${{ matrix.example }}' on ${{ matrix.db }}
if: github.event.schedule == '' || startsWith( github.ref, 'refs/heads/wip/' )
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -90,6 +91,9 @@ jobs:
.gradle/wrapper
# refresh cache every month to avoid unlimited growth
key: gradle-examples-${{ matrix.db }}-${{ steps.get-date.outputs.yearmonth }}
- name: Print event
run: |
echo 'Event: ${{ github.event.schedule }}'
- name: Set up JDK 11
uses: actions/[email protected]
with:
Expand All @@ -108,6 +112,7 @@ jobs:

test_dbs:
name: Test with ${{ matrix.db }}
if: github.event.schedule == '' || startsWith( github.ref, 'refs/heads/wip/' )
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -147,6 +152,7 @@ jobs:

test_jdks:
name: Test with Java ${{ matrix.java.name }}
if: github.event.schedule == '' || startsWith( github.ref, 'refs/heads/wip/' )
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down

0 comments on commit 7dd3408

Please sign in to comment.