Skip to content

Commit

Permalink
Integrate GitHub Actions and remove Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-n authored Jan 18, 2020
1 parent 564d448 commit 6184353
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Java CI

on: [push]

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: Gradle Wrapper Validation
uses: gradle/[email protected]
- name: Build with Gradle
run: ./gradlew build
- name: Codecov
uses: codecov/[email protected]

10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 6184353

Please sign in to comment.