Skip to content

Commit 5e54606

Browse files
authored
Merge pull request #3602 from nf-core/dev
2 parents d65784a + 5f61010 commit 5e54606

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ nf_core/pipeline-template/nextflow_schema.json
88
nf_core/pipeline-template/modules.json
99
nf_core/pipeline-template/tower.yml
1010
nf_core/pipeline-template/.github/ISSUE_TEMPLATE/bug_report.yml
11+
nf_core/pipeline-template/.github/workflows/nf-test.yml
1112
tests/data/pipeline_create_template_skip.yml
1213
# don't run on things handled by ruff
1314
*.py

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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**

nf_core/pipeline-template/.github/workflows/nf-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ env:
3434
jobs:
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 }}
@@ -69,9 +69,9 @@ jobs:
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
version = "3.3.0"
5+
version = "3.3.1"
66

77
with open("README.md") as f:
88
readme = f.read()

0 commit comments

Comments
 (0)