Add revocation check fallback for PKIX based verification #601
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Building JSS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: adopt | |
- name: Build JSS | |
run: mvn install | |
- name: Build examples | |
run: mvn compile | |
working-directory: examples | |
# TODO: Run examples |