ci: run notebook checks for changed notebooks (#1941)

This commit is contained in:
Vadym Barda
2024-10-01 16:50:24 +00:00
committed by GitHub
parent 674180ad0c
commit 46b52b2426
9 changed files with 66 additions and 18 deletions
+20
View File
@@ -22,7 +22,27 @@ concurrency:
cancel-in-progress: false
jobs:
get-changed-files:
runs-on: ubuntu-latest
outputs:
changed-files: ${{ steps.changed-files.outputs.all }}
steps:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: Ana06/get-changed-files@v2.3.0
with:
filter: "docs/docs/**"
run-changed-notebooks:
needs: get-changed-files
uses: ./.github/workflows/run_notebooks.yml
secrets: inherit
with:
changed-files: ${{ needs.get-changed-files.outputs.changed-files }}
deploy:
needs: run-changed-notebooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4