From 9c4688575cfcb363927be5138a460ac1192987a8 Mon Sep 17 00:00:00 2001 From: Simon Pribylski Date: Wed, 2 Oct 2024 14:01:33 +0000 Subject: [PATCH] Update .github/workflows/gdmc.yml --- .github/workflows/gdmc.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gdmc.yml b/.github/workflows/gdmc.yml index b8e1358..28d45b0 100644 --- a/.github/workflows/gdmc.yml +++ b/.github/workflows/gdmc.yml @@ -11,7 +11,10 @@ jobs: uses: actions/checkout@v3 - name: Pip - run: pip install -r requirements.txt + run: | + virtualenv --python=python3 pythonenv + source pythonenv/bin/activate + pip install -r requirements.txt - name: Run run: python3 main.py \ No newline at end of file