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 93e7634 commit c41ec81Copy full SHA for c41ec81
.github/actions/setup-python/action.yml
@@ -0,0 +1,21 @@
1
+name: Setup Python
2
+description: Setup Python
3
+
4
+inputs:
5
+ python-version:
6
+ description: Python version
7
+ required: false
8
+ default: "3.10"
9
10
+runs:
11
+ using: "composite"
12
+ steps:
13
+ - uses: pdm-project/setup-pdm@v3
14
+ name: Setup PDM
15
+ with:
16
+ python-version: ${{ inputs.python-version }}
17
+ architecture: "x64"
18
+ cache: true
19
20
+ - run: pdm sync -G:all
21
+ shell: bash
.github/workflows/python-publish.yml renamed to .github/workflows/release.yml
0 commit comments