Workflow file for this run
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: Python flake8, black, pylint and ruff code quality check and post PR code suggestions | |
on: [push, pull_request] | |
jobs: | |
lint: | |
# LINE FOR TEST CHANGE | |
# TODO: change branch of workflow repo (2x) | |
uses: mundialis/github-workflows/.github/workflows/linting.yml@test_post_pr_reviews | |
with: | |
VALIDATE_HTML: false | |
post-pr-reviews: | |
needs: lint | |
# if: ${{ needs.lint.result == 'failure' }} | |
if: failure() | |
uses: mundialis/github-workflows/.github/workflows/post-pr-reviews.yml@test_post_pr_reviews |