We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f051b9a + f388373 commit 0352150Copy full SHA for 0352150
1 file changed
.github/workflows/curation-validation.yml
@@ -82,10 +82,19 @@ jobs:
82
83
mkdir -p "${OUTPUT_DIR}/${BASENAME}"
84
85
- curation-validation \
86
- -c "$csv" \
87
- -o "${OUTPUT_DIR}/${BASENAME}" \
88
- -u "${{ secrets.GEONAMES_USER }}" || true
+ if [ "$BASENAME" = "update_records_metadata" ]; then
+ curation-validation \
+ -c "$csv" \
+ -o "${OUTPUT_DIR}/${BASENAME}" \
89
+ -u "${{ secrets.GEONAMES_USER }}" \
90
+ --test input_file_structure \
91
+ --test validate_fields || true
92
+ else
93
94
95
96
+ -u "${{ secrets.GEONAMES_USER }}" || true
97
+ fi
98
99
echo "::endgroup::"
100
done
0 commit comments