readme - clarify how to get latest stable version, for specified major version

This commit is contained in:
james 2022-06-24 01:04:18 +01:00
parent ffcd00020c
commit 5414eda0c4

View file

@ -127,6 +127,16 @@ steps:
- run: python my_script.py - 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: Download and set up PyPy:
```yaml ```yaml