Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
GH-29 Changed CI to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
rwanderc committed Feb 22, 2021
1 parent e42be6c commit bc80f14
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Java CI with Maven

on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**

jobs:
java8:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 14 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: java -version
- run: mvn -B verify --file pom.xml
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

0 comments on commit bc80f14

Please sign in to comment.