Skip to content

Commit

Permalink
Update build-and-test.yaml
Browse files Browse the repository at this point in the history
Updated the Build & Test pipeline
  • Loading branch information
B3nedikt committed Sep 26, 2023
1 parent 71b4f50 commit 66168f6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v1
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'temurin'
cache: 'gradle'

- name: Build with Gradle
run: ./gradlew build test jacocoTestReport

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

0 comments on commit 66168f6

Please sign in to comment.