8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad0f6a commit c4e89faCopy full SHA for c4e89fa
README.md
@@ -127,6 +127,26 @@ steps:
127
- run: python my_script.py
128
```
129
130
+Download and set up the latest patch version of Python (for specified major & minor versions):
131
+```yaml
132
+steps:
133
+- uses: actions/checkout@v3
134
+- uses: actions/setup-python@v4
135
+ with:
136
+ python-version: '3.11-dev'
137
+- run: python my_script.py
138
+```
139
+
140
+Download and set up the latest stable version of Python (for specified major version):
141
142
143
144
145
146
+ python-version: '3.x'
147
148
149
150
Download and set up PyPy:
151
152
```yaml
0 commit comments