1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

Move 'Show github context' to just before flake8

$GITHUB_EVENT_PATH wasn't set in the shell with it first.
This commit is contained in:
Athanasius 2020-07-31 13:17:56 +01:00
parent 71fa1dbcf6
commit 063a83b8e8

View File

@ -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
####################################################################