We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b61ada commit 795cda7Copy full SHA for 795cda7
1 file changed
.github/workflows/ci.yml
@@ -33,14 +33,14 @@ jobs:
33
python-version: "3.13"
34
steps:
35
- uses: actions/checkout@v4
36
- - name: Set up Python ${{ matrix.python-version }}
37
- uses: actions/setup-python@v4
38
- with:
39
- python-version: ${{ matrix.python-version }}
40
- name: Set up uv
41
uses: astral-sh/setup-uv@v6
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Generate lock file for specific django version
+ run: uv lock -P django~=${{ matrix.django-version }}
42
- name: Install dependencies
43
- run: uv pip install -e .[twilio,html2text] "django~=${{ matrix.django-version }}"
+ run: uv sync --all-extras
44
- name: Run tests
45
run: |
46
uv run coverage run --source herald runtests.py -v 2
0 commit comments