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 --health-retries 5
steps: 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 - uses: actions/checkout@v3
- name: Set up Python 3.9 - name: Set up Python 3.9
uses: actions/setup-python@v3 uses: actions/setup-python@v3
with: with:
python-version: "3.9" python-version: "3.9"
- name: Install dependencies - name: Install application dependencies
run: make bootstrap run: make bootstrap
env:
SQLALCHEMY_DATABASE_TEST_URI: postgresql://postgres:password@db:5432/test_notification_api
# - name: Run style checks # - name: Run style checks
# run: flake8 . # run: flake8 .
# - name: Check imports alphabetized # - name: Check imports alphabetized