add support of PEM and PKCS#1 formats to private key imports, and upd… #359
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: Verification Tests | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
# macos-12 for Intel Mac, macos-14 for Apple Chips Mac | |
os: [ubuntu-20.04, windows-2019, windows-2022, macos-12, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- run: | | |
# start a virtual X server for Linux | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
export DISPLAY=:99 | |
sudo Xvfb -ac :99 -screen 0 1280x800x24 > /dev/null 2>&1 & | |
fi | |
./run-ci-test.sh | |
shell: bash # let Windows use bash | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ux-test-result_${{ matrix.os }} | |
path: ux-and-transport-test/build/reports/tests/test | |
if: ${{ always() }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: unit-test-result_${{ matrix.os }} | |
path: build/reports/tests | |
if: ${{ always() }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ux-test-error_${{ matrix.os }} | |
path: ux-and-transport-test/test-error-screenshot | |
if: ${{ always() }} |