Skip to content

Commit

Permalink
Create gradle-build-pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JLLeitschuh authored Jun 16, 2020
1 parent 1c03c28 commit a7e7d84
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/gradle-build-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# .github/workflows/gradle-build-pr.yml
name: Run Gradle on PRs
on: push, pull_request
jobs:
gradle:
strategy:
matrix:
task: [integrationTest, docTest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 8
- uses: eskatos/gradle-command-action@v1
with:
arguments: ${{ matrix.task }}

0 comments on commit a7e7d84

Please sign in to comment.