Remove support for Presentation Exchange over OpenID4VP #333
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: Test Everything (All OS/Arch) | |
| on: | |
| #For caching | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| kotlin-version: | |
| description: "Override Kotlin version?" | |
| required: false | |
| default: "" | |
| type: string | |
| testballoon-version: | |
| description: "Override TestBalloon version (full version string)?" | |
| required: false | |
| default: "" | |
| type: string | |
| jobs: | |
| test-everything: | |
| uses: a-sit-plus/internal-workflows/.github/workflows/test-everything.yml@v3 | |
| with: | |
| override-cache: ${{ github.ref_name == 'develop' }} | |
| matrix-file-name: ".github/config/test-strategy-matrix.json" | |
| kotlin-version: ${{ inputs.kotlin-version }} | |
| testballoon-version: ${{ inputs.testballoon-version }} |