homeserver/roles/hifis-net.unattended_upgrades/.github/workflows/prepare-action/action.yml
mg b5c16eaacd Rolle aktualisiert: unattended upgrades (#461)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #461
2023-02-17 12:17:12 +01:00

21 lines
505 B
YAML

---
name: "Install dependencies and prepare the environment."
description: "Install the necessary dependencies for jobs."
runs:
using: "composite"
steps:
- name: "Install pipenv."
run: "pipx install pipenv"
shell: "bash"
- name: "Set up Python 3."
uses: "actions/setup-python@v4"
id: "setup-python"
with:
python-version: "3.10"
cache: "pipenv"
- name: "Install dependencies via pipenv."
run: "pipenv install --dev"
shell: "bash"