Skip to content

Commit

Permalink
Merge pull request #345 from onelogin/migrate-to-gha
Browse files Browse the repository at this point in the history
Support Github Actions. Create maven.yml
  • Loading branch information
pitbulk authored May 15, 2021
2 parents 03aadbc + d006fb8 commit c7ad332
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: java-saml CI with Maven

on: [push, pull_request]

jobs:
test:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [ '8', '9', '10', '11' ]
os: [ 'ubuntu-latest', 'windows-latest' ]
name: Java ${{ matrix.Java }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Maven Test
run: mvn --batch-mode clean verify org.jacoco:jacoco-maven-plugin:report
6 changes: 3 additions & 3 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
<version>2.2.0</version>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand All @@ -72,13 +72,13 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-keys</artifactId>
<version>4.2.1</version>
<version>4.2.8</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.0.9</version>
<version>1.3.0</version>
<optional>true</optional>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion toolkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<dependency>
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
<version>2.2.0</version>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down

0 comments on commit c7ad332

Please sign in to comment.