Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed Feb 13, 2025
1 parent c314d1e commit 19f7385
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,27 @@ jobs:
export ST_UPLOAD_FILE_ENABLED=0
export ST_INSTALL_HUEY=0
make test
test_huey:
name: Huey / Py ${{ matrix.python }} / Django ${{ matrix.django }}
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
django: ['4.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
uv sync --all-extras
uv pip install --upgrade Django==${{ matrix.django }}
- name: Run Tests
run: |
uv run ./spirit/extra/bin/spirit.py startproject project
export PYTHONWARNINGS="default"
export ST_UPLOAD_FILE_ENABLED=0
export ST_TASK_MANAGER="huey"
make test

0 comments on commit 19f7385

Please sign in to comment.