You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced-usage.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -309,6 +309,15 @@ steps:
309
309
- run: python my_script.py
310
310
```
311
311
312
+
```yaml
313
+
steps:
314
+
- uses: actions/checkout@v4
315
+
- uses: actions/setup-python@v5
316
+
with:
317
+
python-version-file: 'Pipfile' # Read python version from a file Pipfile
318
+
- run: python my_script.py
319
+
```
320
+
312
321
## Check latest version
313
322
314
323
The `check-latest` flag defaults to `false`. Use the default or set `check-latest` to `false` if you prefer stability and if you want to ensure a specific `Python or PyPy` version is always used.
0 commit comments