Skip to content

Commit

Permalink
Merge pull request #64 from norrisjeremy/20210823
Browse files Browse the repository at this point in the history
Support RFC 8308  + support several Tectia (ssh.com) algorithms
  • Loading branch information
mwiede authored Sep 6, 2021
2 parents 6c13679 + 511384b commit 8061e21
Show file tree
Hide file tree
Showing 81 changed files with 4,347 additions and 531 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 16]
java: ['8', '11', '16']
steps:
- uses: actions/checkout@v2
- name: Cache local Maven repository
Expand All @@ -27,15 +27,19 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ matrix.java }}-maven-
- name: Set up build JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 16
distribution: 'zulu'
java-version: '16'
check-latest: true
- name: Build with Maven
run: mvn -B -DskipTests=true package --file pom.xml
- name: Set up test JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
check-latest: true
- name: Test with Maven
run: mvn -B -P coverage verify -Denforcer.skip=true -DskipITs=false --file pom.xml
- uses: actions/upload-artifact@v2
Expand Down
Loading

0 comments on commit 8061e21

Please sign in to comment.