From 5de4ea9ebc5efc28c4c0274639fe9fb9483027b8 Mon Sep 17 00:00:00 2001 From: Jack Michaud Date: Sun, 1 Jan 2023 13:08:25 -0500 Subject: [PATCH] ci: install backend dependencies for generating openapi --- .github/workflows/test-api-contract.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-api-contract.yaml b/.github/workflows/test-api-contract.yaml index e863974c..e75e5375 100644 --- a/.github/workflows/test-api-contract.yaml +++ b/.github/workflows/test-api-contract.yaml @@ -18,6 +18,8 @@ jobs: - run: cd oasst-shared && pip install -e . + - run: cd backend && pip install -r requirements.txt + - run: cd discord-bot && pip install -r requirements.txt - run: cd discord-bot && pip install -r requirements.dev.txt