Merge pull request #38 from alxshelepenok/release/v0.1.8 #117
This file contains hidden or 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: Shell tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| shell-tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - name: Crypto test vectors (sign/verify) | |
| run: bash tests/crypto/test-sign.sh | |
| shell: bash | |
| - name: Manifest golden tests | |
| run: bash tests/manifest/test-manifest.sh | |
| shell: bash | |
| - name: Installer matrix suite | |
| run: bash tests/install/test-install.sh | |
| shell: bash | |
| - name: PowerShell installer suite | |
| if: runner.os == 'Windows' | |
| run: powershell -NoProfile -ExecutionPolicy Bypass -File tests/install/test-install.ps1 | |
| shell: pwsh |