mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
12 lines
303 B
YAML
12 lines
303 B
YAML
|
name: Install python dependencies
|
||
|
description: Install python dependencies with pip, with caching
|
||
|
runs:
|
||
|
using: 'composite'
|
||
|
steps:
|
||
|
- name: Setup python
|
||
|
uses: actions/setup-python@v5
|
||
|
with:
|
||
|
python-version: '3.10'
|
||
|
cache: pip
|
||
|
cache-dependency-path: pyproject.toml
|