summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/github-actions.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml
index 57c3b47..accff4e 100644
--- a/.github/workflows/github-actions.yml
+++ b/.github/workflows/github-actions.yml
@@ -14,6 +14,8 @@ jobs:
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- - run: pip3 install -r dev-requirements.txt
- - run: py.test -v
+ - run: sudo apt-get install python3-venv
+ - run: python -m venv ve
+ - run: ve/bin/pip install -r dev-requirements.txt
+ - run: ve/bin/py.test -v
- run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file