-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from ManonMarchand/add-codemeta
add codemeta and its validator action
- Loading branch information
1 parent
f9f205f
commit e2e4264
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: test_codemeta | ||
|
||
on: | ||
release: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: gitlab-registry.in2p3.fr/escape2020/wp3/eossr:v1.0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: validate codemeta | ||
run: eossr-metadata-validator codemeta.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"@context": "https://doi.org/10.5063/schema/codemeta-2.0", | ||
"@type": "SoftwareSourceCode", | ||
"license": "https://spdx.org/licenses/GPL-3.0", | ||
"codeRepository": "https://github.com/cds-astro/aladin-lite", | ||
"dateCreated": "2013-05-01", | ||
"datePublished": "2013-05-01", | ||
"dateModified": "2023-01-31", | ||
"issueTracker": "https://github.com/cds-astro/aladin-lite/issues", | ||
"name": "Aladin Lite", | ||
"version": "3.0.0", | ||
"softwareVersion": "3.0.0", | ||
"description": "An astronomical HiPS visualizer in the browser.", | ||
"identifier": "add-zenodo-doi-here", | ||
"applicationCategory": "Astronomy, Visualization", | ||
"funding": "ESCAPE 824064", | ||
"referencePublication": "http://aspbooks.org/publications/532/007.pdf", | ||
"readme": "https://aladin.cds.unistra.fr/AladinLite/doc/", | ||
"releaseNotes": "https://aladin.cds.unistra.fr/AladinLite/doc/#release-notes", | ||
"funder": { | ||
"@type": "Organization", | ||
"name": "European Commission Framework Programme Horizon 2020 Research and Innovation action" | ||
}, | ||
"keywords": [ | ||
"IVOA", | ||
"Astronomy" | ||
], | ||
"programmingLanguage": [ | ||
"Rust", | ||
"Javascript" | ||
], | ||
"relatedLink": [ | ||
"https://aladin.cds.unistra.fr/" | ||
], | ||
"author": [ | ||
{ | ||
"@type": "Person", | ||
"@id": "https://orcid.org/0000-0002-7123-773X", | ||
"givenName": "Matthieu", | ||
"familyName": "Baumann", | ||
"email": "[email protected]", | ||
"affiliation": { | ||
"@type": "Organization", | ||
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France" | ||
} | ||
}, | ||
{ | ||
"@type": "Person", | ||
"@id": "https://orcid.org/0000-0001-5818-2781", | ||
"givenName": "Thomas", | ||
"familyName": "Boch", | ||
"email": "[email protected]", | ||
"affiliation": { | ||
"@type": "Organization", | ||
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France" | ||
} | ||
} | ||
], | ||
"maintainer": [ | ||
{ | ||
"@type": "Person", | ||
"@id": "https://orcid.org/0000-0002-7123-773X", | ||
"givenName": "Matthieu", | ||
"familyName": "Baumann", | ||
"email": "[email protected]", | ||
"affiliation": { | ||
"@type": "Organization", | ||
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France" | ||
} | ||
}, | ||
{ | ||
"@type": "Person", | ||
"@id": "https://orcid.org/0000-0001-5818-2781", | ||
"givenName": "Thomas", | ||
"familyName": "Boch", | ||
"email": "[email protected]", | ||
"affiliation": { | ||
"@type": "Organization", | ||
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France" | ||
} | ||
} | ||
] | ||
} |