diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 8f6937e3..18af3222 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,16 +15,6 @@ jobs: flake8: runs-on: ubuntu-18.04 - #################################################################### - # Show full github context to aid debugging. - #################################################################### - steps: - - name: Show github context - run: | - env - cat $GITHUB_EVENT_PATH - #################################################################### - #################################################################### # Checkout the necessary commits #################################################################### @@ -52,6 +42,16 @@ jobs: if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; elif [ -f requirements.txt ]; then pip install -r requirements.txt ; fi #################################################################### + #################################################################### + # Show full github context to aid debugging. + #################################################################### + steps: + - name: Show github context + run: | + env + cat $GITHUB_EVENT_PATH + #################################################################### + #################################################################### # Lint with flake8 ####################################################################