Skip to content

Commit

Permalink
ci: migrate to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMurphy committed Jan 19, 2021
1 parent 9e24a8e commit 18be1af
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: '${{ matrix.platform }} with Java 8'
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Test
run: mvn -B test
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

13 changes: 0 additions & 13 deletions appveyor.yml

This file was deleted.

0 comments on commit 18be1af

Please sign in to comment.