added a timeout feature to ensure the container was running before pu… #103
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: Main Workflow | |
| on: | |
| push: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| actions: read | |
| id-token: write | |
| jobs: | |
| build-image: | |
| uses: ./.github/workflows/build-image.yml | |
| lint-format: | |
| uses: ./.github/workflows/lint-format.yml | |
| needs: build-image | |
| unit-sec-scan: | |
| uses: ./.github/workflows/unit-sec-test.yml | |
| needs: lint-format | |
| push-docker-image: | |
| uses: ./.github/workflows/push-docker-image.yml | |
| needs: unit-sec-scan |