👷 change poetry install action

This commit is contained in:
felinae98
2023-01-08 19:11:54 +08:00
parent d4ca592b78
commit 312847fb6a
4 changed files with 21 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Setup Python
description: Setup Python
inputs:
python-version:
description: Python version
required: false
default: "3.10"
runs:
using: "composite"
steps:
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
- name: install poetry
uses: abatilo/actions-poetry@v2