feat: add portable test containers #17
Workflow file for this run
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: Portable Test Sigstore Containers | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: | |
| - ubuntu-latest | |
| # - macos-latest # docker is not available in github's hosted macos runners. | |
| # - windows-latest # hold off while rekor still specifies `platform: linux` | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| - uses: ./actions/portable_testing | |
| - name: healthcheck | |
| run: | | |
| curl http://localhost:5555/healthz | |
| curl http://localhost:3000/ |