2022-01-13 16:41:01 +08:00
|
|
|
name: Setup Python
|
|
|
|
description: Setup Python
|
|
|
|
|
2022-01-13 17:58:35 +08:00
|
|
|
inputs:
|
|
|
|
python-version:
|
|
|
|
description: Python version
|
|
|
|
required: false
|
2022-08-14 19:41:00 +08:00
|
|
|
default: "3.10"
|
2022-01-13 17:58:35 +08:00
|
|
|
|
2022-01-13 16:41:01 +08:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2022-11-04 09:29:13 +08:00
|
|
|
- name: Install poetry
|
2023-03-07 11:33:13 +08:00
|
|
|
run: pipx install poetry==1.3.2
|
2022-05-27 11:25:51 +08:00
|
|
|
shell: bash
|
|
|
|
|
2022-11-04 09:29:13 +08:00
|
|
|
- uses: actions/setup-python@v4
|
2022-01-13 16:41:01 +08:00
|
|
|
with:
|
2022-11-04 09:29:13 +08:00
|
|
|
python-version: ${{ inputs.python-version }}
|
|
|
|
architecture: "x64"
|
|
|
|
cache: "poetry"
|
2022-01-13 16:41:01 +08:00
|
|
|
|
|
|
|
- run: poetry install -E all
|
|
|
|
shell: bash
|