Skip to content

Commit

Permalink
🔖 Release 0.1.0 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgramRipper authored Oct 6, 2023
1 parent 8790d33 commit ddadf84
Show file tree
Hide file tree
Showing 25 changed files with 3,233 additions and 796 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "Default Linux Universal",
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:1": {}
"ghcr.io/devcontainers-contrib/features/pdm:2": {}
},
"postCreateCommand": "poetry config virtualenvs.in-project true && poetry install && poetry run pre-commit install",
"postCreateCommand": "pdm install && pdm run pre-commit install",
"customizations": {
"vscode": {
"settings": {
Expand Down
12 changes: 4 additions & 8 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@ inputs:
runs:
using: "composite"
steps:
- name: Install poetry
run: pipx install poetry
shell: bash

- uses: actions/setup-python@v4
- uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ inputs.python-version }}
architecture: "x64"
cache: "poetry"
cache: true

- run: poetry install
shell: bash
- name: Install dependencies
run: pdm install
Loading

0 comments on commit ddadf84

Please sign in to comment.