File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed
nf_core/pipeline-template/.github/workflows Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ nf_core/pipeline-template/nextflow_schema.json
88nf_core /pipeline-template /modules.json
99nf_core /pipeline-template /tower.yml
1010nf_core /pipeline-template /.github /ISSUE_TEMPLATE /bug_report.yml
11+ nf_core /pipeline-template /.github /workflows /nf-test.yml
1112tests /data /pipeline_create_template_skip.yml
1213# don't run on things handled by ruff
1314* .py
Original file line number Diff line number Diff line change 11# nf-core/tools: Changelog
22
3+ ## [ v3.3.1 - Tungsten Tamarin Patch] ( https://github.com/nf-core/tools/releases/tag/3.3.1 ) - [ 2025-06-02]
4+
5+ ### Template
6+
7+ - Use correct comment symbol in ` nf-test.yml ` ([ #3601 ] ( https://github.com/nf-core/tools/pull/3601 ) )
8+
39## [ v3.3.0 - Tungsten Tamarin] ( https://github.com/nf-core/tools/releases/tag/3.3.0 ) - [ 2025-06-02]
410
511** Highlights**
Original file line number Diff line number Diff line change 3434jobs :
3535 nf-test-changes :
3636 name : nf-test-changes
37- runs-on : // {% endraw %}{% if is_nfcore %}use self-hosted runners
37+ runs-on : # {% endraw %}{% if is_nfcore %} use self-hosted runners
3838 - runs-on=${{ github.run_id }}-nf-test-changes
39- - runner=4cpu-linux-x64{% else %}use GitHub runners
39+ - runner=4cpu-linux-x64{% else %} use GitHub runners
4040 - " ubuntu-latest" {% endif %}{% raw %}
4141 outputs :
4242 shard : ${{ steps.set-shards.outputs.shard }}
6969 name : " ${{ matrix.profile }} | ${{ matrix.NXF_VER }} | ${{ matrix.shard }}/${{ needs.nf-test-changes.outputs.total_shards }}"
7070 needs : [nf-test-changes]
7171 if : ${{ needs.nf-test-changes.outputs.total_shards != '0' }}
72- runs-on : // {% endraw %}{% if is_nfcore %}use self-hosted runners
72+ runs-on : # {% endraw %}{% if is_nfcore %} use self-hosted runners
7373 - runs-on=${{ github.run_id }}-nf-test
74- - runner=4cpu-linux-x64{% else %}use GitHub runners
74+ - runner=4cpu-linux-x64{% else %} use GitHub runners
7575 - " ubuntu-latest" {% endif %}{% raw %}
7676 strategy :
7777 fail-fast : false
@@ -111,9 +111,9 @@ jobs:
111111 confirm-pass :
112112 needs : [nf-test]
113113 if : always()
114- runs-on : // {% endraw %}{% if is_nfcore %}use self-hosted runners
114+ runs-on : {% endraw %}# {% if is_nfcore %} use self-hosted runners
115115 - runs-on=${{ github.run_id }}-confirm-pass
116- - runner=2cpu-linux-x64{% else %}use GitHub runners
116+ - runner=2cpu-linux-x64{% else %} use GitHub runners
117117 - " ubuntu-latest" {% endif %}{% raw %}
118118 steps :
119119 - name : One or more tests failed
Original file line number Diff line number Diff line change 22
33from setuptools import find_packages , setup
44
5- version = "3.3.0 "
5+ version = "3.3.1 "
66
77with open ("README.md" ) as f :
88 readme = f .read ()
You can’t perform that action at this time.
0 commit comments