mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-04 02:26:11 +08:00
21 lines
409 B
YAML
21 lines
409 B
YAML
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@v5
|
|
with:
|
|
python-version: ${{ inputs.python-version }}
|
|
- name: Setup Poetry
|
|
uses: Gr1N/setup-poetry@v9
|
|
with:
|
|
poetry-version: "1.7.1"
|