Files
notifications-admin/.github/actions/setup-project/action.yml
2022-08-26 10:00:35 -04:00

19 lines
495 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.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install application dependencies
shell: bash
run: make bootstrap