We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d945ee4 commit ca1310eCopy full SHA for ca1310e
.github/workflows/test_and_deploy.yml
@@ -117,6 +117,14 @@ jobs:
117
# Download the repository
118
- uses: actions/checkout@v4
119
120
+ # Check which files have changed
121
+ - uses: dorny/paths-filter@v3
122
+ id: filter
123
+ with:
124
+ filters: |
125
+ validate-json:
126
+ - '**/*.json'
127
+
128
# Setup Python
129
- name: Set up Python ${{ matrix.python-version }}
130
uses: actions/setup-python@v5
@@ -125,6 +133,7 @@ jobs:
133
134
# Run JSON Validation script
135
- name: Validate JSON
136
+ if: steps.filter.outputs.validate-json == 'true'
137
run: bash travis_validate_json.sh
138
139
# Build installMetadata.zip
0 commit comments