install pycharm debugger for cicd #4
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 | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| pages: write | |
| actions: read | |
| id-token: write | |
| jobs: | |
| flake8: | |
| permissions: | |
| contents: read | |
| pages: read | |
| id-token: none | |
| name: Lint (Flake8) | |
| uses: ./.github/workflows/flake8.yml # Call the reusable workflow | |
| secrets: inherit | |
| pyright: | |
| permissions: | |
| contents: read | |
| pages: read | |
| id-token: none | |
| name: Lint (PyRight) | |
| uses: ./.github/workflows/pyright.yml # Call the reusable workflow | |
| secrets: inherit | |
| pytest: | |
| permissions: | |
| contents: read | |
| pages: read | |
| id-token: none | |
| name: Test (Pytest) | |
| #needs: [flake8] | |
| uses: ./.github/workflows/pytest.yml # Call the reusable workflow | |
| secrets: inherit |