setup-pdm icon indicating copy to clipboard operation
setup-pdm copied to clipboard

A GitHub Action that installs pdm properly for all Python versions

Results 6 setup-pdm issues
Sort by recently updated
recently updated
newest added

## What happened? Currently, I'm using `pdm-project/setup-pdm@v4` for initializing PDM runtime and caching dependencies for my project (See [`build.yml`](https://github.com/Dragon1573/Tk-Nonogram/blob/4d7c2653e0c6897889343629cc4a0c8047950e05/.github/workflows/build.yaml#L37-L54)). According to the YAML, there should be 5 concurrent jobs running...

## Description According to [Available images - actions/runner-images](https://github.com/actions/runner-images/blob/main/README.md#available-images), `macos-latest` is currently tagged on _macOS 14 (Sonama) (arm64)_ runner image. However, according to [Action inputs - pdm-project/setup-pdm](https://github.com/pdm-project/setup-pdm?tab=readme-ov-file#action-inputs), users can only specify...

I tried setup-python with python3.8 and server without python3.8-venv, It shows following errors. ## Steps to reproduce workflow.yml ``` - name: Setup PDM uses: pdm-project/setup-pdm@v4 with: python-version: 3.8 ``` ##...

I'm trying to use the [PDM Setup](https://github.com/marketplace/actions/setup-pdm) GitHub action in a GitHub workflow in one of my private repos (with Actions permissions to allow all actions from GitHub and verified...

With the following workflow definition (excerpted): ```yaml - run: echo '-G dev -G ci' > deps.groups - name: Install PDM uses: pdm-project/setup-pdm@v3 with: python-version: "3.10" cache: true # These files...

It would be great if there is an option to only restore cache on pull requests, since the cases that reusing caches from feature branch are really rare. IMO, reuse...