diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index bb80f35..c53ae69 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -91,7 +91,8 @@ jobs: steps: - name: Checkout source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + clean: true with: submodules: 'true' fetch-depth: 0 @@ -99,12 +100,13 @@ jobs: - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v3 with: - distribution: 'temurin' + distribution: 'corretto' java-version: ${{ matrix.java-version }} + check-latest: true - name: Run tests run: >- - ./bld download compile test + ./bld clean download compile test -Dtest.postgres=true -Dtest.mysql=true -Dtest.mariadb=true -Dtest.oracle=true -Dtest.oracle-free=true -DtestsBadgeUrl=https://rife2.com/tests-badge/update/com.uwyn.rife2/bld -DtestsBadgeApiKey=${{ secrets.TESTS_BADGE_API_KEY }}