1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

fix $HOME environment variable in CI

This commit is contained in:
thatmattlove 2021-12-06 17:31:08 -07:00
parent 7ed9e200b8
commit 77453980c0

View file

@ -15,8 +15,6 @@ jobs:
python-version: [3.8, 3.9]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
HYPERGLASS_APP_PATH: ${{ env.HOME }}/hyperglass
steps:
- name: Git Checkout
@ -43,7 +41,9 @@ jobs:
redis-version: ${{ matrix.redis-version }}
- name: Prepare
run: mkdir ${{ env.HYPERGLASS_APP_PATH }}
run: |
echo "HYPERGLASS_APP_PATH=$HOME/hyperglass" >> $GITHUB_ENV
mkdir $HYPERGLASS_APP_PATH
- name: Install (Poetry)
run: poetry install