File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ name: Build
99env :
1010 MAJOR : 0
1111 MINOR : 0
12- PYTHON_VERSION : 3.9.6
12+ PYTHON_VERSION : 3.10.1
1313
1414#
1515# Establish when the workflow is run
@@ -62,13 +62,14 @@ jobs:
6262 - name : Establish a cache for dependencies
6363 uses : actions/cache@v2
6464 with :
65- path : ~ /.local
65+ path : ${HOME} /.local
6666 key : ${{ runner.os }}
6767
6868 - name : Build
6969 run : |
70+ export PYTHONUSERBASE=${HOME}/.local
7071 pip install --user -r requirements.txt
71- pylint ${GITHUB_WORKSPACE}/mrmat_python_api_flask
72+ ${PYTHONUSERBASE}/bin/ pylint ${GITHUB_WORKSPACE}/mrmat_python_api_flask
7273 PYTHONPATH=${GITHUB_WORKSPACE} python -m pytest --cov=mrmat_python_api_flask
7374 PYTHONPATH=${GITHUB_WORKSPACE} python -m build --wheel -n
7475
You can’t perform that action at this time.
0 commit comments