From 190238bdfa0807adbf380cc507c33eda2afb466a Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Fri, 17 Jul 2020 12:42:36 +0300 Subject: [PATCH] Update README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 138edadb..1005044b 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ This action sets up a Python environment for use in actions by: - Ability to download, install and set up Python packages from `actions/python-versions` that do not come preinstalled on runners - Allows for pinning to a specific patch version of Python without the worry of it ever being removed or changed - Automatic setup and download of Python packages if using a self-hosted runner +- Support for pre-release versions of Python # Usage @@ -92,7 +93,7 @@ jobs: ``` -Download and set up the accurate pre-release version of Python: +Download and set up a accurate pre-release version of Python: ```yaml steps: - uses: actions/checkout@v2 @@ -102,7 +103,7 @@ steps: - run: python my_script.py ``` -Download and set up the latest available version of Python (including both pre-release and stable versions): +Download and set up the latest available version of Python (includes both pre-release and stable versions): ```yaml steps: - uses: actions/checkout@v2