We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab5fc73 commit 2de0acbCopy full SHA for 2de0acb
.github/workflows/cartoframes-ci.yml
@@ -25,12 +25,14 @@ jobs:
25
with:
26
python-version: ${{ matrix.python-version }}
27
28
- - name: Install dependencies
29
- run: |
30
- python -m pip install --upgrade pip
31
- pip install tox
32
- pip install tox-gh-actions
33
-
+ - run: echo "Installing dependencies"
+ - name: Install dependencies (pip)
+ run: python -m pip install --upgrade pip
+ - name: Install dependencies (tox)
+ run: pip install tox
+ - name: Install dependencies (tox-gh-actions)
34
+ run: pip install tox-gh-actions
35
+ - run: echo "Dependencies installed"
36
- name: Test with tox
37
run: |
38
tox
0 commit comments