Skip to content

Commit e4ebfe4

Browse files
authored
Create maven.yml
1 parent 03aadbc commit e4ebfe4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/maven.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: java-saml CI with Maven
5+
6+
on: [push, pull_request]
7+
8+
jobs:
9+
test:
10+
11+
runs-on: runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
java: [ '7', '8', '9', '10', '11' ]
15+
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
16+
name: Java ${{ matrix.Java }} (${{ matrix.os }})
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Java
20+
uses: actions/setup-java@v2
21+
with:
22+
distribution: 'adopt'
23+
java-version: ${{ matrix.java }}
24+
- name: Maven Test
25+
run: mvn --batch-mode clean verify org.jacoco:jacoco-maven-plugin:report

0 commit comments

Comments
 (0)