Skip to content

Commit

Permalink
Enable basic GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed Apr 10, 2020
1 parent 08a512c commit 35c6a15
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: gradle/wrapper-validation-action@v1
- run: ./gradlew build
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# librootjava

[![ci][1]][2]

Example code for "How-To SU"

For some outdated background details, see:
Expand Down Expand Up @@ -418,3 +422,6 @@ dependencies {
implementation 'eu.chainfire:libsuperuser:1.0.0.+'
}
```

[1]: https://github.com/Chainfire/libsuperuser/workflows/ci/badge.svg
[2]: https://github.com/Chainfire/libsuperuser/actions

0 comments on commit 35c6a15

Please sign in to comment.