Skip to content

Commit

Permalink
🔨 Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
berlix committed Nov 15, 2020
1 parent cbec616 commit c4e0333
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2

- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Test
run: ./gradlew test

- name: Upload test reports
uses: actions/upload-artifact@v1
with:
name: test-reports
path: build/reports/tests
if: always()

0 comments on commit c4e0333

Please sign in to comment.