Skip to content

Commit

Permalink
[DOCS] Adding fair software badge and GA
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed May 21, 2024
1 parent c486ff3 commit ea07ef1
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/fair-software.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: fair-software

on: push

jobs:
verify:
name: "fair-software"
runs-on: ubuntu-latest
steps:
- uses: fair-software/[email protected]
name: Measure compliance with fair-software.eu recommendations
env:
PYCHARM_HOSTED: "Trick colorama into displaying colored output"
with:
MY_REPO_URL: "https://github.com/${{ github.repository }}"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

[](https://bestpractices.coreinfrastructure.org/projects/8847/badge)

[//]: # (The previous line invisible link is for compatibility with the howfairis script https://github.com/fair-software/howfairis-github-action/tree/main wich uses the old bestpractives URL)
[//]: # (The previous line invisible link is for compatibility with the howfairis script https://github.com/fair-software/howfairis-github-action/tree/main wich uses the old bestpractices URL)



Expand Down
3 changes: 3 additions & 0 deletions biobb_gromacs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from . import gromacs
from . import gromacs_extra

name = "biobb_gromacs"
__all__ = ["gromacs", "gromacs_extra"]
__version__ = "4.1.1"
12 changes: 12 additions & 0 deletions biobb_gromacs/gromacs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
from . import editconf
from . import genion
from . import genrestr
from . import grompp
from . import make_ndx
from . import mdrun
from . import pdb2gmx
from . import gmxselect
from . import solvate
from . import grompp_mdrun
from . import trjcat

name = "gromacs"
__all__ = ["editconf", "genion", "genrestr", "grompp", "make_ndx", "mdrun", "pdb2gmx", "gmxselect", "solvate", "grompp_mdrun", "trjcat"]
3 changes: 3 additions & 0 deletions biobb_gromacs/gromacs_extra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
from . import append_ligand
from . import ndx2resttop

name = "gromacs_extra"
__all__ = ["append_ligand", "ndx2resttop"]

0 comments on commit ea07ef1

Please sign in to comment.