mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
21 lines
432 B
YAML
21 lines
432 B
YAML
name: Setup Python
|
|
description: Setup Python
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.9"
|
|
architecture: "x64"
|
|
|
|
- uses: Gr1N/setup-poetry@v7
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pypoetry/virtualenvs
|
|
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
|
|
|
|
- run: poetry install -E all
|
|
shell: bash
|