Skip to content

Commit 07534b1

Browse files
author
Brian Faust
committed
ci: setup github action workflow for testing
1 parent 4704463 commit 07534b1

2 files changed

Lines changed: 18 additions & 29 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Set up JDK 1.8
12+
uses: actions/setup-java@v1
13+
with:
14+
java-version: 1.8
15+
- name: Install
16+
run: gradle dependencies
17+
- name: Test
18+
run: gradle test

0 commit comments

Comments
 (0)