Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Check sdist

Check sdist #403

Workflow file for this run

name: "Check sdist"
permissions:
contents: read
on:
schedule:
- cron: '0 0 * * *'
jobs:
check-sdist:
# Don't run on forks
if: github.repository == 'scikit-learn/scikit-learn'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
# scipy and cython are required to build sdist
run: |
python -m pip install --upgrade pip
pip install check-sdist
- run: |
check-sdist --inject-junk
update-tracker:
uses: ./.github/workflows/update_tracking_issue.yml
if: ${{ always() }}
needs: [check-sdist]
with:
job_status: ${{ needs.check-sdist.result }}
secrets:
BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.