From 1b410ec369f92231454c04dc449008c9f465dd78 Mon Sep 17 00:00:00 2001 From: erdem Date: Tue, 9 Jul 2024 18:43:18 +0100 Subject: [PATCH] fix collectstatic step in ci job --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d15f7d6..95e9589 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: uses: actions/setup-python@v2 with: python-version: "3.12" + + - name: Install system dependencies + run: sudo apt-get update && sudo apt-get install -y gdal-bin libgdal-dev - name: Install Poetry run: | @@ -53,4 +56,5 @@ jobs: run: poetry run black . - name: Collect static files - run: poetry run python manage.py collectstatic --noinput \ No newline at end of file + run: poetry run python manage.py collectstatic --noinput + working-directory: demo/ \ No newline at end of file