Update sample version to 0.14 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/gradle-build-pr.yml | |
name: Run integration tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
task: [docTest, integrationTest] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
# 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 |