2024-02-01 08:46:55 +08:00
|
|
|
name: "test / hygiene"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["trigger"]
|
|
|
|
types:
|
|
|
|
- requested
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
statuses: write
|
|
|
|
|
|
|
|
concurrency:
|
2024-02-01 18:24:15 +08:00
|
|
|
group: "${{ github.event.workflow_run.head_repository.full_name }}-${{ github.event.workflow_run.head_branch }}-${{ github.workflow_ref }}"
|
2024-02-01 08:46:55 +08:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
changes:
|
|
|
|
name: "changes"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
should_run: ${{ steps.changes.outputs.should_run }}
|
|
|
|
sha: ${{ steps.changes.outputs.sha }}
|
|
|
|
pr_number: ${{ steps.changes.outputs.pr_number }}
|
|
|
|
source_branch: ${{ steps.changes.outputs.source_branch }}
|
|
|
|
source_repo: ${{ steps.changes.outputs.source_repo }}
|
|
|
|
merge_sha: ${{ steps.changes.outputs.merge_sha }}
|
2024-02-01 21:27:54 +08:00
|
|
|
mergeable: ${{ steps.changes.outputs.mergeable }}
|
2024-02-01 08:46:55 +08:00
|
|
|
steps:
|
2024-02-02 02:14:41 +08:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-01 18:34:22 +08:00
|
|
|
- uses: "gradio-app/gradio/.github/actions/changes@main"
|
2024-02-01 08:46:55 +08:00
|
|
|
id: changes
|
|
|
|
with:
|
|
|
|
type: "all"
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
test-hygiene:
|
|
|
|
name: "test-hygiene"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
|
|
if: needs.changes.outputs.should_run == 'true'
|
|
|
|
steps:
|
2024-02-02 02:14:41 +08:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-01 08:46:55 +08:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.changes.outputs.merge_sha }}
|
2024-02-01 21:15:15 +08:00
|
|
|
repository: ${{ needs.changes.outputs.mergeable == 'true' && github.repository || needs.changes.outputs.source_repo }}
|
2024-02-01 08:46:55 +08:00
|
|
|
- name: Generate Notebooks
|
|
|
|
run: |
|
|
|
|
pip install nbformat && cd demo && python generate_notebooks.py
|
|
|
|
- name: Print Git Status
|
|
|
|
run: echo $(git status) && echo $(git diff)
|
|
|
|
- name: Assert Notebooks Match
|
|
|
|
run: git status | grep "nothing to commit, working tree clean"
|
|
|
|
- name: Check for large files
|
|
|
|
uses: actionsdesk/lfs-warning@v3.2
|
|
|
|
with:
|
|
|
|
filesizelimit: 5MB
|
|
|
|
- name: do check
|
|
|
|
if: always()
|
|
|
|
uses: "gradio-app/github/actions/commit-status@main"
|
|
|
|
with:
|
|
|
|
type: "all"
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
pr: ${{ needs.changes.outputs.pr_number }}
|
|
|
|
sha: ${{ needs.changes.outputs.sha }}
|
|
|
|
name: "test / hygiene"
|
|
|
|
result: ${{ job.status }}
|
|
|
|
job_id: "test-hygiene"
|