Unsuccessful experiment

pull/443/head
Wyatt Stanke 9 months ago
parent 542042dfcb
commit 149d0dacd2
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -1,24 +0,0 @@
---
name: "Setup environment"
description: "Setup environment for the CI"
runs:
using: composite
steps:
- name: Install Python
uses: actions/setup-python@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Setup a local virtual environment
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
shell: bash
- uses: actions/cache@v3
name: Define a cache for the virtual environment
file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
shell: bash
Loading…
Cancel
Save