Skip to content

Commit

Permalink
resolves fakemongo#356 switch to GitHub Actions
Browse files Browse the repository at this point in the history
Travis CI no longer offers Java < 9
  • Loading branch information
slonopotamus committed Nov 9, 2020
1 parent 7301aa1 commit 473b004
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
java: [7, 8, 9]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test
run: mvn clean install
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.11.6</scala.version>
<scala.version>2.11.12</scala.version>
<version.surefire>2.18.1</version.surefire>

<!-- Jacoco -->
Expand Down

0 comments on commit 473b004

Please sign in to comment.