diff --git a/README.md b/README.md index 6e885a7d..761103f4 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,17 @@ steps: - run: python my_script.py ``` -Download and set up the latest stable version of Python, for specified major version: +Download and set up the latest patch version of Python (for specified major & minor versions): +```yaml +steps: +- uses: actions/checkout@v3 +- uses: actions/setup-python@v4 + with: + python-version: '3.11-dev' +- 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