Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use yaml specific comment symbols
  • Loading branch information
mashehu committed Jun 2, 2025
commit 14a3120855c4f3cd6f9f7b555d4c4e53d7dc481b
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ nf_core/pipeline-template/nextflow_schema.json
nf_core/pipeline-template/modules.json
nf_core/pipeline-template/tower.yml
nf_core/pipeline-template/.github/ISSUE_TEMPLATE/bug_report.yml
nf_core/pipeline-template/.github/workflows/nf-test.yml
tests/data/pipeline_create_template_skip.yml
# don't run on things handled by ruff
*.py
Expand Down
6 changes: 3 additions & 3 deletions nf_core/pipeline-template/.github/workflows/nf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
jobs:
nf-test-changes:
name: nf-test-changes
runs-on: // {% endraw %}{% if is_nfcore %}use self-hosted runners
runs-on: #{% endraw %}{% if is_nfcore %} use self-hosted runners
- runs-on=${{ github.run_id }}-nf-test-changes
- runner=4cpu-linux-x64{% else %}use GitHub runners
- "ubuntu-latest"{% endif %}{% raw %}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
name: "${{ matrix.profile }} | ${{ matrix.NXF_VER }} | ${{ matrix.shard }}/${{ needs.nf-test-changes.outputs.total_shards }}"
needs: [nf-test-changes]
if: ${{ needs.nf-test-changes.outputs.total_shards != '0' }}
runs-on: // {% endraw %}{% if is_nfcore %}use self-hosted runners
runs-on: #{% endraw %}{% if is_nfcore %} use self-hosted runners
- runs-on=${{ github.run_id }}-nf-test
- runner=4cpu-linux-x64{% else %}use GitHub runners
- "ubuntu-latest"{% endif %}{% raw %}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
confirm-pass:
needs: [nf-test]
if: always()
runs-on: // {% endraw %}{% if is_nfcore %}use self-hosted runners
runs-on: {% endraw %}#{% if is_nfcore %} use self-hosted runners
- runs-on=${{ github.run_id }}-confirm-pass
- runner=2cpu-linux-x64{% else %}use GitHub runners
- "ubuntu-latest"{% endif %}{% raw %}
Expand Down
Loading