Skip to content

Commit

Permalink
Forward Artifacts from build to test
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Feb 2, 2024
1 parent 178b710 commit d02f969
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,24 @@ jobs:
coverage_report_title: JaCoCo
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Artifacts
uses: actions/upload-artifact
with:
name: maven-repo
path: build/maven-repo

test-java-versions:
needs: gradle
strategy:
matrix:
java-test-version: [ 11, 17, 21 ]
runs-on: ubuntu-22.04
steps:
- name: Download Artifacts
uses: actions/download-artifact
with:
name: maven-repo
path: build/maven-repo
- uses: actions/setup-java@v3
with:
distribution: temurin
Expand Down

0 comments on commit d02f969

Please sign in to comment.