Skip to content

Commit

Permalink
ci(python): retry install dependencies python
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed May 19, 2023
1 parent 980796c commit 1261fc4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
run: npx semantic-release
- run: yarn copy:lua:python
- name: Setup Python
uses: actions/setup-python@@57ded4d7d5e986d7296eab16560982c6dd7c923b # v4
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 mypy types-redis
pip install -r python/requirements.txt

0 comments on commit 1261fc4

Please sign in to comment.