Skip to content

Commit

Permalink
Update test_and_deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
carsen-stringer authored Jul 27, 2023
1 parent c160b3d commit ea75599
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:

- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
apt-get update && apt-get install libgl1
else
echo "$RUNNER_OS"
fi
pip install --upgrade pip
pip install setuptools tox tox-gh-actions
Expand Down Expand Up @@ -69,4 +74,4 @@ jobs:
run: |
git tag
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*

0 comments on commit ea75599

Please sign in to comment.