1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2024-09-19 16:46:43 +00:00

Update README.md

This commit is contained in:
Konrad Pabjan 2019-11-25 08:50:40 -05:00 committed by GitHub
parent 7e4719db87
commit 4af3334acd
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ steps:
- uses: actions/setup-python@v1
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # (x64 or x86)
architecture: 'x64' # (x64 or x86), optional. Defaults to x64
- run: python my_script.py
```