1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-16 09:10:35 +03:00

*.py exit status was inverted

That'll teach me for testing with a commit only affecting *.yml files.
This commit is contained in:
Athanasius 2020-07-28 16:10:04 +01:00
parent 9c413a8ba9
commit 792583bfe1

View File

@ -26,7 +26,7 @@ jobs:
run: |
# Will exit with non-zero if no filenames ending in ".py" are in
# the diff.
git diff --name-only "refs/remotes/origin/${BASE_REF}" -- | egrep -v '.py$'
git diff --name-only "refs/remotes/origin/${BASE_REF}" -- | egrep '.py$'
- name: Set up Python 3.7
if: ${{ success() }}