Skip to content

Commit

Permalink
Merge branch 'feature/github-actions' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Nov 21, 2020
2 parents dbd5580 + c0a3562 commit e06d017
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 18 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout latest code
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8

- name: Set up Gradle build cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build using Gradle wrapper
run: ./gradlew build --stacktrace --scan
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit e06d017

Please sign in to comment.