Skip to content

Commit

Permalink
Create pull request github action
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop authored Feb 13, 2022
1 parent 9b2f70e commit 4f223f4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test_pr

on: pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test
run: ./gradlew test

0 comments on commit 4f223f4

Please sign in to comment.