[devops] fix doc test on pr (#3782)

pull/3787/head
Hongxin Liu 2023-05-19 16:28:57 +08:00 committed by GitHub
parent 32f81f14d4
commit b4788d63ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ jobs:
- name: Test the Doc
run: |
source activate pytorch
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
for file in ${{ needs.detect-changed-doc.outputs.changed_files }}; do
echo "Testing $file now..."
docer test -p $file
done