mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-08 19:54:13 -05:00
16 lines
406 B
YAML
16 lines
406 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"
|