Skip to content

Commit 95efd40

Browse files
committed
fix naming
1 parent 7e082a1 commit 95efd40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nf_core/pipelines/lint/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class PipelineLint(nf_core.utils.Pipeline):
8282
# Import all linting tests as methods for this class
8383
actions_awsfulltest = actions_awsfulltest
8484
actions_awstest = actions_awstest
85-
actions_ci = actions_nf_test
85+
actions_nf_test = actions_nf_test
8686
actions_schema_validation = actions_schema_validation
8787
base_config = base_config
8888
modules_config = modules_config
@@ -138,7 +138,7 @@ def _get_all_lint_tests(release_mode):
138138
"files_exist",
139139
"nextflow_config",
140140
"files_unchanged",
141-
"actions_ci",
141+
"actions_",
142142
"actions_awstest",
143143
"actions_awsfulltest",
144144
"readme",

nf_core/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ class NFCoreYamlLintConfig(BaseModel):
12101210
""" Lint the README.md file """
12111211
nfcore_components: Optional[bool] = None
12121212
""" Lint all required files to use nf-core modules and subworkflows """
1213-
actions_ci: Optional[bool] = None
1213+
actions_nf_test: Optional[bool] = None
12141214
""" Lint all required files to use GitHub Actions CI """
12151215
actions_awstest: Optional[bool] = None
12161216
""" Lint all required files to run tests on AWS """

0 commit comments

Comments
 (0)