Files
notifications-admin/.github/actions/setup-project/action.yml
2024-06-20 12:37:11 -07:00

22 lines
576 B
YAML

name: Set up project
description: Setup python & install dependencies
runs:
using: composite
steps:
- name: Install container dependencies
shell: bash
run: |
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libcurl4-openssl-dev
- name: Set up Python 3.12.3
uses: actions/setup-python@v4
with:
python-version: "3.12.3"
- name: Install poetry
shell: bash
run: pip install poetry
- name: Install application dependencies
shell: bash
run: make bootstrap