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

Commit c120c17

Browse files
rwandercWander Costa
authored and
Wander Costa
committed
GH-29 Changed CI to GitHub
1 parent 94233aa commit c120c17

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/maven.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Java CI with Maven
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- release/**
8+
pull_request:
9+
branches:
10+
- main
11+
- release/**
12+
13+
jobs:
14+
java8:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
java: [ 8, 11, 14 ]
19+
name: Java ${{ matrix.java }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Setup java
23+
uses: actions/setup-java@v1
24+
with:
25+
java-version: ${{ matrix.java }}
26+
- run: java -version
27+
- run: mvn -B verify --file pom.xml

.travis.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)