Skip to content

Commit

Permalink
Replace Travis with github actions. (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 authored Jun 21, 2020
1 parent 0a6f2a7 commit b933439
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
java-version: [1.8, 11, 14]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: wrapper
arguments: check build publishToMavenLocal --stacktrace
- uses: actions/upload-artifact@v2
with:
name: Artifacts
path: build/libs/
- uses: actions/upload-artifact@v2
with:
name: Artifacts
path: ./*/build/libs/
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit b933439

Please sign in to comment.