Skip to content

Commit ad4e782

Browse files
committed
[README.md] add name field to Action docs
1 parent 7770571 commit ad4e782

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,28 @@ None
3131
Uses 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

0 commit comments

Comments
 (0)