Skip to content

Commit

Permalink
Another try with github actions (add individual develop and pull-requ…
Browse files Browse the repository at this point in the history
…est workflows)
  • Loading branch information
noties committed Aug 29, 2019
1 parent 9d61454 commit f9f8d36
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Other build checks
name: Snapshot

on:
push:
branches:
- '!master'
- develop

jobs:
build:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Pull request checks

on: pull_request

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build

0 comments on commit f9f8d36

Please sign in to comment.