-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCS] Adding fair software badge and GA
- Loading branch information
Showing
5 changed files
with
34 additions
and
1 deletion.
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,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 }}" |
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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
from . import gromacs | ||
from . import gromacs_extra | ||
|
||
name = "biobb_gromacs" | ||
__all__ = ["gromacs", "gromacs_extra"] | ||
__version__ = "4.1.1" |
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 |
---|---|---|
@@ -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"] |
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
from . import append_ligand | ||
from . import ndx2resttop | ||
|
||
name = "gromacs_extra" | ||
__all__ = ["append_ligand", "ndx2resttop"] |