readme - clarify how to get latest stable version, for specified major version
This commit is contained in:
parent
ffcd00020c
commit
5414eda0c4
1 changed files with 10 additions and 0 deletions
10
README.md
10
README.md
|
@ -127,6 +127,16 @@ steps:
|
|||
- run: python my_script.py
|
||||
```
|
||||
|
||||
Download and set up the latest stable version of Python, for specified major version:
|
||||
```yaml
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- run: python my_script.py
|
||||
```
|
||||
|
||||
Download and set up PyPy:
|
||||
|
||||
```yaml
|
||||
|
|
Loading…
Add table
Reference in a new issue