Skip to content

Commit 952489a

Browse files
committed
resolves fakemongo#356 switch to GitHub Actions
Travis CI no longer offers Java < 9
1 parent 7301aa1 commit 952489a

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
strategy:
6+
matrix:
7+
java: [7, 8]
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Set up Java
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: ${{ matrix.java }}
16+
- name: Test
17+
run: mvn clean install

.travis.yml

-16
This file was deleted.

0 commit comments

Comments
 (0)