I removed the extra white space at the end of the test_main.py file #6
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 | |
| 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 |