File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+
4
+ # <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions>
5
+ - package-ecosystem : " github-actions"
6
+ directory : " /"
7
+ schedule :
8
+ interval : " daily"
Original file line number Diff line number Diff line change @@ -39,15 +39,17 @@ jobs:
39
39
python -m venv venv-sdist
40
40
venv-sdist/bin/python -m pip install ../dist/aesara-*.tar.gz
41
41
venv-sdist/bin/python -c "import aesara;print(aesara.__version__)"
42
- test -n "$(find . -name lazylinker_c.c)"
42
+ echo "Checking for lazylinker_c.c..."
43
+ test -n "$(find . -name lazylinker_c.c)" && echo "Found lazylinker_c.c"
43
44
- name : Check the wheel installs and imports
44
45
run : |
45
46
mkdir -p test-wheel
46
47
cd test-wheel
47
48
python -m venv venv-wheel
48
49
venv-wheel/bin/python -m pip install ../dist/aesara-*.whl
49
50
venv-wheel/bin/python -c "import aesara;print(aesara.__version__)"
50
- test -n "$(find . -name lazylinker_c.c)"
51
+ echo "Checking for lazylinker_c.c..."
52
+ test -n "$(find . -name lazylinker_c.c)" && echo "Found lazylinker_c.c"
51
53
- uses : actions/upload-artifact@v2
52
54
with :
53
55
name : artifact
You can’t perform that action at this time.
0 commit comments