Skip to content

Commit

Permalink
Move from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Pastore committed Aug 25, 2021
1 parent 9d97fa6 commit f67e4df
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/worflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Continuous Integration

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-18.04
strategy:
matrix:
java: [ 6, 7, 8 ]
name: Java ${{ matrix.java }} test
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Install Maven dependencies
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Launch tests
run: mvn -B test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit f67e4df

Please sign in to comment.