Skip to content

Commit

Permalink
SOF-6892: array items in separate lines, drop node v12 from gh action…
Browse files Browse the repository at this point in the history
…s, some renamings
  • Loading branch information
pranabdas committed Dec 8, 2023
1 parent e0cefa4 commit 1f8d90f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x]

steps:
- name: Checkout this repository
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "core/reusable/atomic-data/numeric-value",
"$id": "core/reusable/atomic-data/value-number",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Atomic data numeric properties",
"description": "Numeric value specific to atomic data",
Expand Down
2 changes: 1 addition & 1 deletion schema/core/reusable/atomic_data_per_orbital_numeric.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"$ref": "atomic_data/per_orbital.json"
},
{
"$ref": "atomic_data/numeric_value.json"
"$ref": "atomic_data/value_number.json"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"$ref": "atomic_data/per_orbital_pair.json"
},
{
"$ref": "atomic_data/numeric_value.json"
"$ref": "atomic_data/value_number.json"
}
]
}
7 changes: 6 additions & 1 deletion schema/properties_directory/non-scalar/hubbard_u.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@
"$ref": "../../core/reusable/atomic_data_per_orbital_numeric.json"
}
],
"required": ["id", "atomicSpecies", "orbitalName", "value"]
"required": [
"id",
"atomicSpecies",
"orbitalName",
"value"
]
}
}
},
Expand Down
8 changes: 7 additions & 1 deletion schema/properties_directory/non-scalar/hubbard_v.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@
"$ref": "../../core/reusable/atomic_data_per_orbital_pair_numeric.json"
}
],
"required": ["id", "id2", "atomicSpecies", "atomicSpecies2", "value"]
"required": [
"id",
"id2",
"atomicSpecies",
"atomicSpecies2",
"value"
]
}
}
},
Expand Down

0 comments on commit 1f8d90f

Please sign in to comment.