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
1 change: 0 additions & 1 deletion .github/actions/build/build-wheel/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Build Python wheel package and upload as artifact.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-core
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-core@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/build/verify-structure/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-core
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-core@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/bandit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Run Bandit security checks on the codebase.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/mypy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Run Mypy type checking on the codebase.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/pip-audit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Run pip-audit to check for known vulnerabilities in dependencies.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/pytest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Run Pytest tests with coverage reporting.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/ruff/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Run Ruff linting checks on the codebase.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/validate-pyproject/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Validate pyproject.toml structure.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/ci/version-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/install-python-dev
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/install-python-dev@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/setup/install-python-core/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Installs core Python dependencies from pyproject.toml using uv.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/setup-uv-python
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/setup-uv-python@main
Expand Down
1 change: 0 additions & 1 deletion .github/actions/setup/install-python-dev/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Installs dev Python dependencies from pyproject.toml using uv.
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/setup-uv-python
if: github.event.repository.name == 'template-python'
- uses: javidahmed64592/template-python/.github/actions/setup/setup-uv-python@main
Expand Down