Skip to content

Commit

Permalink
fix(workflow): release
Browse files Browse the repository at this point in the history
  • Loading branch information
wyapx committed Aug 15, 2024
1 parent 93e7634 commit c41ec81
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Setup Python
description: Setup Python

inputs:
python-version:
description: Python version
required: false
default: "3.10"

runs:
using: "composite"
steps:
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
python-version: ${{ inputs.python-version }}
architecture: "x64"
cache: true

- run: pdm sync -G:all
shell: bash
File renamed without changes.

0 comments on commit c41ec81

Please sign in to comment.