Skip to content

Commit

Permalink
Add GA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski committed Sep 28, 2020
1 parent 57a7f5d commit 2829ee2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build project

on: [push, pull_request]ó

jobs:
build:
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: Cache .gradle
uses: burrunan/gradle-cache-action@v1
with:
job-id: build
- name: Assemble
run: ./gradlew assembleDebug --stacktrace

0 comments on commit 2829ee2

Please sign in to comment.