Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Aug 10, 2023
1 parent fadccfd commit 1ec298e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
name: python-packages
path: ${{ env.WORKON_HOME }}

- name: Set PYTHONPATH
- name: Set PATH
run: |
VENV_NAME=$(ls ${WORKON_HOME})
echo "PYTHONPATH=${WORKON_HOME}/${VENV_NAME}/lib/python${PYTHON_VERSION}/site-packages/" >> $GITHUB_ENV
echo "${WORKON_HOME}/${VENV_NAME}/bin" >> $GITHUB_PATH
- name: Check migrations
run: |
Expand Down Expand Up @@ -95,10 +95,10 @@ jobs:
name: python-packages
path: ${{ env.WORKON_HOME }}

- name: Set PYTHONPATH
- name: Set PATH
run: |
VENV_NAME=$(ls ${WORKON_HOME})
echo "PYTHONPATH=${WORKON_HOME}/${VENV_NAME}/lib/python${PYTHON_VERSION}/site-packages/" >> $GITHUB_ENV
echo "${WORKON_HOME}/${VENV_NAME}/bin" >> $GITHUB_PATH
- name: Calculate updated MD5 for Pipfile.lock
id: calculate-md5-2
Expand Down Expand Up @@ -133,10 +133,10 @@ jobs:
name: python-packages
path: ${{ env.WORKON_HOME }}

- name: Set PYTHONPATH
- name: Set PATH
run: |
VENV_NAME=$(ls ${WORKON_HOME})
echo "PYTHONPATH=${WORKON_HOME}/${VENV_NAME}/lib/python${PYTHON_VERSION}/site-packages/" >> $GITHUB_ENV
echo "${WORKON_HOME}/${VENV_NAME}/bin" >> $GITHUB_PATH
- name: Run tests
run: |
Expand Down Expand Up @@ -182,10 +182,10 @@ jobs:
name: python-packages
path: ${{ env.WORKON_HOME }}

- name: Set PYTHONPATH
- name: Set PATH
run: |
VENV_NAME=$(ls ${WORKON_HOME})
echo "PYTHONPATH=${WORKON_HOME}/${VENV_NAME}/lib/python${PYTHON_VERSION}/site-packages/" >> $GITHUB_ENV
echo "${WORKON_HOME}/${VENV_NAME}/bin" >> $GITHUB_PATH
- name: Linter
run: |
Expand Down Expand Up @@ -217,10 +217,10 @@ jobs:
name: python-packages
path: ${{ env.WORKON_HOME }}

- name: Set PYTHONPATH
- name: Set PATH
run: |
VENV_NAME=$(ls ${WORKON_HOME})
echo "PYTHONPATH=${WORKON_HOME}/${VENV_NAME}/lib/python${PYTHON_VERSION}/site-packages/" >> $GITHUB_ENV
echo "${WORKON_HOME}/${VENV_NAME}/bin" >> $GITHUB_PATH
- name: Deploy docs
run: pipenv run mkdocs gh-deploy --force
Expand Down

0 comments on commit 1ec298e

Please sign in to comment.