File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change 3131Uses path ` requirements.txt ` and updates ` pip ` before the install.
3232
3333``` yaml
34- uses : py-actions/py-dependency-install@v1
34+ - name : Install Python dependencies
35+ uses : py-actions/py-dependency-install@v1
3536` ` `
3637
3738### Disable ` pip` update before install
3839
3940` ` ` yaml
40- uses: py-actions/py-dependency-install@v1
41- with:
42- update-pip: "false"
41+ - name: Install Python dependencies
42+ uses: py-actions/py-dependency-install@v1
43+ with:
44+ update-pip: "false"
4345` ` `
4446
4547# ## Configure `setuptools` and `wheel` installs/updates
4648
4749` ` ` yaml
48- uses: py-actions/py-dependency-install@v1
49- with:
50- update-pip: "true"
51- update-setuptools: "true"
52- update-wheel: "true"
50+ - name: Install Python dependencies
51+ uses: py-actions/py-dependency-install@v1
52+ with:
53+ update-pip: "true"
54+ update-setuptools: "true"
55+ update-wheel: "true"
5356` ` `
5457
5558# # License
You can’t perform that action at this time.
0 commit comments