Skip to content

Commit 1857833

Browse files
committed
install git before checkout
1 parent 3762e7e commit 1857833

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,16 @@ jobs:
2525
OTHER_LANGS: de es fr ru nl it ja el bg da et fi lv lt pl pt ro sv sk sl cs hu zh_CN
2626

2727
steps:
28-
- name: Checkout
29-
uses: actions/checkout@v4
30-
31-
- name: additional env setup
28+
- name: Install git
3229
run: |
33-
pip3 install -r requirements.txt
3430
apt-get -y update
3531
apt-get -y install git
32+
33+
- name: Checkout
34+
uses: actions/checkout@v4
35+
36+
- name: additional python packages
37+
run: pip3 install -r requirements.txt
3638

3739
- name: quick build docs
3840
run: |

0 commit comments

Comments
 (0)