-
Notifications
You must be signed in to change notification settings - Fork 10
36 lines (29 loc) · 1.25 KB
/
deploy-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Deploy tests
on:
pull_request:
jobs:
cancel-previous-runs:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
assess-file-changes:
uses: neurodatawithoutborders/nwbinspector/.github/workflows/assess-file-changes.yml@updating_node16
run-tests:
needs: assess-file-changes
if: ${{ needs.assess-file-changes.outputs.SOURCE_CHANGED == 'true' }}
uses: neurodatawithoutborders/nwbinspector/.github/workflows/testing.yml@updating_node16
run-past-gallery:
needs: assess-file-changes
if: ${{ needs.assess-file-changes.outputs.SOURCE_CHANGED == 'true' }}
uses: neurodatawithoutborders/nwbinspector/.github/workflows/version-gallery.yml@updating_node16
run-dev-gallery:
needs: assess-file-changes
if: ${{ needs.assess-file-changes.outputs.SOURCE_CHANGED == 'true' }}
uses: neurodatawithoutborders/nwbinspector/.github/workflows/dev-gallery.yml@updating_node16
update-testing-files:
needs: assess-file-changes
if: ${{ needs.assess-file-changes.outputs.TESTING_CHANGED == 'true' }}
uses: neurodatawithoutborders/nwbinspector/.github/workflows/update-testing-files.yml@updating_node16
secrets:
DANDI_API_KEY: ${{ secrets.DANDI_API_KEY }}