Use correct comment character

This commit is contained in:
Danny McCormick 2019-08-16 10:21:29 -04:00 committed by GitHub
parent e336b852d5
commit ae4917dae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,8 @@ steps:
- uses: actions/checkout@master
- 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)
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)
- run: python my_script.py
```