Install binary dependencies

This commit is contained in:
Christa Hartsock
2022-07-05 12:29:24 -07:00
parent 6e0bf0a31c
commit 2f8b302513

View File

@@ -23,13 +23,20 @@ jobs:
--health-retries 5
steps:
- name: Install container dependencies
run: |
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libcurl4-openssl-dev
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
- name: Install application dependencies
run: make bootstrap
env:
SQLALCHEMY_DATABASE_TEST_URI: postgresql://postgres:password@db:5432/test_notification_api
# - name: Run style checks
# run: flake8 .
# - name: Check imports alphabetized