Skip to content

Commit 620861d

Browse files
authored
Update django.yml
1 parent 0be1b1c commit 620861d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/django.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-22.04
1312
strategy:
1413
max-parallel: 4
@@ -22,13 +21,19 @@ jobs:
2221
uses: actions/setup-python@v3
2322
with:
2423
python-version: ${{ matrix.python-version }}
24+
2525
- name: Install Dependencies
2626
run: |
2727
sudo apt-get update
2828
sudo apt-get install libpython3.11-dev
2929
python -m pip install --upgrade pip
3030
pip install wheel
3131
pip install -r requirements.txt
32+
33+
- name: Verify Celery Installation
34+
run: |
35+
python -c "import celery; print(celery.__version__)" # Verify Celery import and version
36+
3237
- name: Run Tests
3338
run: |
3439
cd opentreemap

0 commit comments

Comments
 (0)