Skip to content

Commit 2de0acb

Browse files
committed
Spliting dependencies
1 parent ab5fc73 commit 2de0acb

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/cartoframes-ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

28-
- name: Install dependencies
29-
run: |
30-
python -m pip install --upgrade pip
31-
pip install tox
32-
pip install tox-gh-actions
33-
28+
- run: echo "Installing dependencies"
29+
- name: Install dependencies (pip)
30+
run: python -m pip install --upgrade pip
31+
- name: Install dependencies (tox)
32+
run: pip install tox
33+
- name: Install dependencies (tox-gh-actions)
34+
run: pip install tox-gh-actions
35+
- run: echo "Dependencies installed"
3436
- name: Test with tox
3537
run: |
3638
tox

0 commit comments

Comments
 (0)