Skip to content

Commit b674eb6

Browse files
authored
Merge pull request #349 from simvue-io/feature/citation-file
Add `CITATION.cff` file
2 parents d94f98a + 07c2c5d commit b674eb6

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed

.github/workflows/citation.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Citation File Validation
2+
3+
on:
4+
push:
5+
branches: [ "main", "dev", "hotfix/update-ci" ]
6+
pull_request:
7+
branches: [ "main", "dev", "hotfix/update-ci" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 20
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Set up Python
19+
uses: actions/setup-python@v3
20+
- name: Install Checker
21+
run: python3 -m pip install cffconvert
22+
- name: Check Citation File
23+
run: cffconvert --validate

CITATION.cff

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
3+
4+
cff-version: 1.2.0
5+
title: Simvue
6+
message: >-
7+
If you use this software, please cite it using the
8+
metadata from this file.
9+
type: software
10+
authors:
11+
- given-names: Andrew
12+
family-names: Lahiff
13+
affiliation: United Kingdom Atomic Energy Authority
14+
orcid: 'https://orcid.org/0000-0002-2785-4116'
15+
- given-names: Aby
16+
family-names: Abraham
17+
affiliation: United Kingdom Atomic Energy Authority
18+
- given-names: Vignesh
19+
family-names: Gopakumar
20+
orcid: 'https://orcid.org/0000-0002-6773-1049'
21+
affiliation: United Kingdom Atomic Energy Authority
22+
- given-names: Kristian
23+
family-names: Zarebski
24+
affiliation: United Kingdom Atomic Energy Authority
25+
orcid: 'https://orcid.org/0000-0002-6773-1049'
26+
- given-names: Matthew
27+
family-names: Field
28+
affiliation: United Kingdom Atomic Energy Authority
29+
- given-names: James
30+
family-names: Panayis
31+
affiliation: United Kingdom Atomic Energy Authority
32+
repository-code: 'https://github.com/simvue-io/client'
33+
url: 'https://simvue.io/'
34+
abstract: >-
35+
Collect metadata, metrics and artifacts from simulations,
36+
processing and AI/ML training tasks running on any
37+
platform, in real time.
38+
keywords:
39+
- tracking
40+
- monitoring
41+
- metrics
42+
- alerting
43+
- simulation
44+
license: Apache-2.0

0 commit comments

Comments
 (0)