Commit ad9be9b5 authored by Steije van Schelt's avatar Steije van Schelt
Browse files

Clean check

parent f7ca2928
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -33,10 +33,8 @@ check_json_format:
      find . -type f -name "*.json" -print0 | while IFS= read -r -d '' file; do
        if ! diff -q <(jq . "$file") "$file" >/dev/null 2>&1; then
          echo "❌ Unformatted JSON: $file"
          INVALID_JSON_FILES=true
        fi
      done
    - if [ "$INVALID_JSON_FILES" = true ]; then echo "Some JSON files are not formatted. Please run jq to fix them.";

process_asn:
  image: "forge.etsi.org:5050/li/schemas-definitions/asn1test:latest"