mirror of
https://github.com/esphome/esphome.git
synced 2024-11-01 08:37:10 +01:00
5a8b7c17da
* Fix python venv restoring * Add shell * Fix indentation
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Restore Python
|
|
inputs:
|
|
python-version:
|
|
description: Python version to restore
|
|
required: true
|
|
type: string
|
|
cache-key:
|
|
description: Cache key to use
|
|
required: true
|
|
type: string
|
|
outputs:
|
|
python-version:
|
|
description: Python version restored
|
|
value: ${{ steps.python.outputs.python-version }}
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Set up Python ${{ inputs.python-version }}
|
|
id: python
|
|
uses: actions/setup-python@v4.6.0
|
|
with:
|
|
python-version: ${{ inputs.python-version }}
|
|
- name: Restore Python virtual environment
|
|
id: cache-venv
|
|
uses: actions/cache/restore@v3.3.1
|
|
with:
|
|
path: venv
|
|
# yamllint disable-line rule:line-length
|
|
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-venv-${{ inputs.cache-key }}
|
|
- name: Create Python virtual environment
|
|
if: steps.cache-venv.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
python -m venv venv
|
|
. venv/bin/activate
|
|
python --version
|
|
pip install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
|
|
pip install -e .
|