Skip to content

Fix broken workflows #288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-develop-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
python-version: 3.x
- name: Install dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Configure Git
run: |
git config user.name github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-latest-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
python-version: 3.x
- name: Install dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Configure Git
run: |
git config user.name github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
python-version: "3.x"
- name: Install dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Build Package
run: hatch build --clean
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
python-version: 3.x
- name: Install Python Dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
# DISABLED DUE TO DJANGO DOCS CONSTANTLY THROWING 429 ERRORS
# - name: Check documentation links
# run: hatch run docs:linkcheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
with:
python-version: 3.x
- name: Install Python Dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Run Tests
run: hatch run javascript:check
6 changes: 3 additions & 3 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Python Dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Run Single DB Tests
run: hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_${{matrix.settings-module}} -v

Expand All @@ -43,7 +43,7 @@ jobs:
with:
python-version: 3.x
- name: Install Python Dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Check Python formatting
run: hatch fmt src tests --check

Expand All @@ -58,6 +58,6 @@ jobs:
with:
python-version: 3.x
- name: Install Python Dependencies
run: pip install --upgrade pip hatch uv
run: pip install hatch
- name: Run Python type checker
run: hatch run python:type_check