Skip to content

Commit

Permalink
Merge pull request #140 from ingresse/feature/implement-ci/github-act…
Browse files Browse the repository at this point in the history
…ions

[CI] Github Actions
  • Loading branch information
gitrubs authored Feb 4, 2020
2 parents 8038704 + 6899a7f commit 4a0aeb4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run Tests
on: [push]
jobs:
test:
name: Test Job
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: Gradle test
run: ./gradlew test

0 comments on commit 4a0aeb4

Please sign in to comment.