Skip to content

Commit ddadf84

Browse files
🔖 Release 0.1.0 (#1)
1 parent 8790d33 commit ddadf84

25 files changed

+3233
-796
lines changed

.devcontainer/devcontainer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "Default Linux Universal",
33
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
44
"features": {
5-
"ghcr.io/devcontainers-contrib/features/poetry:1": {}
5+
"ghcr.io/devcontainers-contrib/features/pdm:2": {}
66
},
7-
"postCreateCommand": "poetry config virtualenvs.in-project true && poetry install && poetry run pre-commit install",
7+
"postCreateCommand": "pdm install && pdm run pre-commit install",
88
"customizations": {
99
"vscode": {
1010
"settings": {

.github/actions/setup-python/action.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,11 @@ inputs:
1010
runs:
1111
using: "composite"
1212
steps:
13-
- name: Install poetry
14-
run: pipx install poetry
15-
shell: bash
16-
17-
- uses: actions/setup-python@v4
13+
- uses: pdm-project/setup-pdm@v3
1814
with:
1915
python-version: ${{ inputs.python-version }}
2016
architecture: "x64"
21-
cache: "poetry"
17+
cache: true
2218

23-
- run: poetry install
24-
shell: bash
19+
- name: Install dependencies
20+
run: pdm install

0 commit comments

Comments
 (0)