Skip to content

Commit

Permalink
Merge pull request #139 from marracuene/master
Browse files Browse the repository at this point in the history
  • Loading branch information
JLLeitschuh committed Jul 2, 2020
2 parents d95390a + 196e057 commit eb23797
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/gradle-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@ jobs:
gradle:
strategy:
matrix:
task: [integrationTest, docTest]
task: [docTest, integrationTest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 8
- uses: eskatos/gradle-command-action@v1
# run the build
- uses: eskatos/[email protected]
with:
arguments: ${{ matrix.task }}
# upload build output for later inspection, if the build failed
# N.B only applies to the last task in the matrix
- uses: actions/upload-artifact@v2
if: failure()
with:
name: wholebuild #testreports
path: build #build/reports/tests

0 comments on commit eb23797

Please sign in to comment.