Skip to content
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
7 changes: 4 additions & 3 deletions .github/workflows/validate_modified_targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
# Checkout the base branch but fetch all history to avoid a second fetch call
ref: ${{ github.base_ref }}
fetch-depth: 0
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -90,11 +91,11 @@ jobs:
# --- The rest of the steps below are unchanged ---

- name: Validate modified targets
if: steps.discover-modified.outputs.changed_targets != ''
continue-on-error: true
env:
CHANGED_TARGETS: ${{ steps.discover-modified.outputs.changed_targets }}
run: |
poetry run pytest -q --tb no -rA -m validate_targets -n 20 \
--chunked-sites "${{ steps.discover-modified.outputs.changed_targets }}" \
--chunked-sites "$CHANGED_TARGETS" \
--junitxml=validation_results.xml

- name: Prepare validation summary
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ source = "init"

[tool.poetry]
name = "sherlock-project"
version = "0.16.0"
version = "0.16.1"
description = "Hunt down social media accounts by username across social networks"
license = "MIT"
authors = [
Expand Down
Loading