File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,30 @@ jobs:
23
23
- name : Set up Python ${{ matrix.python-version }}
24
24
uses : actions/setup-python@v1
25
25
with :
26
- version : ${{ matrix.python-version }}
26
+ python-version : ${{ matrix.python-version }}
27
+
27
28
- name : Set up Node ${{ matrix.node-version }}
28
29
uses : actions/setup-node@v1
29
30
with :
30
- version : ${{ matrix.node-version }}
31
- - name : Install pipenv, poetry
32
- run : python${{ matrix.python-version}} -m pip install pipenv poetry setuptools
31
+ node-version : ${{ matrix.node-version }}
32
+
33
+ - name : Check python is available
34
+ run : |
35
+ echo "PYTHON"
36
+ python --version
37
+ echo "PYTHONX.X"
38
+ python${{ matrix.python-version}} --version
39
+ echo "PIP"
40
+ pip --version
41
+ echo "PIPX.X"
42
+ pip${{matrix.python-version}} --version
43
+ echo "ok"
44
+
45
+ - name : Install setuptools
46
+ run : python${{ matrix.python-version }} -m pip install setuptools wheel
47
+
48
+ - name : Install pipenv / poetry
49
+ run : python${{ matrix.python-version }} -m pip install pipenv poetry
33
50
34
51
- name : Install serverless
35
52
run : npm install -g serverless
You can’t perform that action at this time.
0 commit comments