Skip to content

Commit

Permalink
👷 add setup-python CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RF-Tar-Railt authored Feb 8, 2024
1 parent 36f81f7 commit 83cfc04
Showing 1 changed file 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

0 comments on commit 83cfc04

Please sign in to comment.