mirror of https://github.com/explosion/spaCy.git
Fix the datemath for reals (#10294)
* add debugging branch and quotes to daily slowtest action * Apparently the quotes fixed it
This commit is contained in:
parent
23bd103d89
commit
f6250015ab
|
@ -19,7 +19,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
today=$(date '+%Y-%m-%d %H:%M:%S')
|
today=$(date '+%Y-%m-%d %H:%M:%S')
|
||||||
yesterday=$(date -d "yesterday" '+%Y-%m-%d %H:%M:%S')
|
yesterday=$(date -d "yesterday" '+%Y-%m-%d %H:%M:%S')
|
||||||
if git log --after=$yesterday --before=$today | grep commit ; then
|
if git log --after="$yesterday" --before="$today" | grep commit ; then
|
||||||
echo "::set-output name=run_tests::true"
|
echo "::set-output name=run_tests::true"
|
||||||
else
|
else
|
||||||
echo "::set-output name=run_tests::false"
|
echo "::set-output name=run_tests::false"
|
||||||
|
|
Loading…
Reference in New Issue