Skip to content

Commit

Permalink
enable GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Feb 6, 2021
1 parent 52e547c commit 7c9d8ab
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
strategy:
matrix:
java: [ '8', '11', '15' ]
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build
run: ./test
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit 7c9d8ab

Please sign in to comment.