Update main.py #205
This file contains 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: Lint, Test & CodeQL Pipeline | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
markdown-lint: | |
name: Markdown Lint | |
uses: ikostan/pico/.github/workflows/markdown-lint.yml@master | |
flake8: | |
name: Lint with flake8 | |
uses: ikostan/pico/.github/workflows/flake8.yml@master | |
pylint: | |
name: Lint with pylint | |
uses: ikostan/pico/.github/workflows/pylint.yml@master | |
pytest: | |
name: Unitest with pytest | |
needs: | |
- flake8 | |
- pylint | |
- markdown-lint | |
uses: ikostan/pico/.github/workflows/pytest.yml@master | |
codeql: | |
name: CodeQL for a new build | |
needs: | |
- pytest | |
uses: ikostan/pico/.github/workflows/codeql_build.yml@master |