Skip to content

Commit

Permalink
CI: Added test job
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Jun 9, 2021
1 parent e29f331 commit e6c9b48
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,18 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew test

0 comments on commit e6c9b48

Please sign in to comment.