mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
Add checkout
This commit is contained in:
parent
3592ca0294
commit
9e2c5c4b72
@ -12,6 +12,7 @@ See [action.yml](action.yml)
|
|||||||
Basic:
|
Basic:
|
||||||
```yaml
|
```yaml
|
||||||
actions:
|
actions:
|
||||||
|
- uses: actions/checkout@latest
|
||||||
- uses: actions/setup-python@latest
|
- uses: actions/setup-python@latest
|
||||||
with:
|
with:
|
||||||
version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
|
version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
|
||||||
@ -28,6 +29,7 @@ jobs:
|
|||||||
python: [ 2.x, 3.x, pypy3 ]
|
python: [ 2.x, 3.x, pypy3 ]
|
||||||
name: Python ${{ matrix.python }} sample
|
name: Python ${{ matrix.python }} sample
|
||||||
actions:
|
actions:
|
||||||
|
- uses: actions/checkout@latest
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@latest
|
uses: actions/setup-python@latest
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user