Merge pull request #2422 from OWASP/renovate/lycheeverse-lychee-actio… #9137
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 container on podman | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-podman: | |
| name: Test with podman | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: run container | |
| run: | | |
| podman run -dt -p 8080:8080 -p 8090:8090 docker.io/jeroenwillemsen/wrongsecrets:latest-no-vault && \ | |
| echo "wait 20 seconds for container to come up" && sleep 20 && \ | |
| curl localhost:8080 |