Skip to content

Commit

Permalink
- Updated action dependencies
Browse files Browse the repository at this point in the history
- Added 21 java version support
- Jobs don't fail on error
  • Loading branch information
ProxyNexus authored and MaximPlusov committed Feb 19, 2024
1 parent 49a4c3f commit 517cef9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ on:
jobs:
build:
name: Checkout and Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

continue-on-error: true

strategy:
fail-fast: false
matrix:
java-version: [8, 11, 16, 17]
java-version: [8, 11, 16, 17, 21]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: JDK setup
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand All @@ -31,7 +34,7 @@ jobs:
path: target/site/jacoco/
coverage:
name: Quality Assurance
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [ build ]

steps:
Expand Down

0 comments on commit 517cef9

Please sign in to comment.