You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/.github/library/setup/action.yml

25 lines
692 B

10 months ago
---
10 months ago
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
10 months ago
- 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
10 months ago
name: Define a cache for the virtual environment
file
10 months ago
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
shell: bash