1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-24 19:38:01 +02:00
This commit is contained in:
Danny McCormick 2019-08-01 09:16:36 -04:00 committed by GitHub
parent 7dc6a07f36
commit 5dc682444b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ Basic:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
- uses: actions/setup-python@v1
with:
version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: x64 // (x64 or x86)
@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup python
uses: actions/setup-python@master
uses: actions/setup-python@v1
with:
version: ${{ matrix.python }}
architecture: x64