mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
19 lines
493 B
YAML
19 lines
493 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
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.12"
|
|
- name: Install poetry
|
|
shell: bash
|
|
run: pip install --upgrade poetry
|