Skip to content

Commit

Permalink
Fix CI modules lint (#7056)
Browse files Browse the repository at this point in the history
* use outputs.modules instead of outputs.modules_files

* modify a module to test CI

* remove meta.yml and environemnt.yml form modules_files

* Revert "modify a module to test CI"

This reverts commit e160c16.
  • Loading branch information
mirpedrol authored Nov 22, 2024
1 parent 22cc1f6 commit d5d0870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
.map(path => path.replace('modules/nf-core/', '')
.split('/')
.slice(0, 2)
.filter(x => x !== 'main.nf' && x !== 'tests')
.filter(x => x !== 'main.nf' && x !== 'tests' && x !== 'meta.yml' && x !== 'environment.yml')
.join('/')))];
- name: Get subworkflow name
Expand All @@ -94,7 +94,7 @@ jobs:
.map(path => path.replace('subworkflows/nf-core/', '')
.split('/')
.slice(0,2)
.filter(x => x !== 'main.nf' && x !== 'tests')
.filter(x => x !== 'main.nf' && x !== 'tests' && x !== 'meta.yml' && x !== 'environment.yml')
.join('/')))];
- name: debug
Expand Down

0 comments on commit d5d0870

Please sign in to comment.