Skip to content

Commit aaf17b6

Browse files
committed
nf-core sync
1 parent 84c9b3d commit aaf17b6

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/seqi
1818
- [ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/seqinspector/tree/master/.github/CONTRIBUTING.md)
1919
- [ ] If necessary, also make a PR on the nf-core/seqinspector _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
2020
- [ ] Make sure your code lints (`nf-core lint`).
21-
- [ ] Ensure the test suite passes (`nextflow run . -profile test,docker --outdir <OUTDIR>`).
21+
- [ ] Ensure the test suite passes (`nf-test test main.nf.test -profile test,docker`).
2222
- [ ] Check for unexpected warnings in debug mode (`nextflow run . -profile debug,test,docker --outdir <OUTDIR>`).
2323
- [ ] Usage Documentation in `docs/usage.md` is updated.
2424
- [ ] Output Documentation in `docs/output.md` is updated.

.github/workflows/linting.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ jobs:
1414
pre-commit:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
17+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1818

19-
- name: Set up Python 3.12
20-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
19+
- name: Set up Python 3.11
20+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
2121
with:
22-
python-version: "3.12"
22+
python-version: 3.11
23+
cache: "pip"
2324

2425
- name: Install pre-commit
2526
run: pip install pre-commit
@@ -31,14 +32,14 @@ jobs:
3132
runs-on: ubuntu-latest
3233
steps:
3334
- name: Check out pipeline code
34-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
35+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3536

3637
- name: Install Nextflow
37-
uses: nf-core/setup-nextflow@v2
38+
uses: nf-core/setup-nextflow@v1
3839

39-
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
40+
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
4041
with:
41-
python-version: "3.12"
42+
python-version: "3.11"
4243
architecture: "x64"
4344

4445
- name: Install dependencies
@@ -59,7 +60,7 @@ jobs:
5960

6061
- name: Upload linting log file artifact
6162
if: ${{ always() }}
62-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4
63+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4
6364
with:
6465
name: linting-logs
6566
path: |

.github/workflows/linting_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Download lint results
14-
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe # v3
14+
uses: dawidd6/action-download-artifact@f6b0bace624032e30a85a8fd9c1a7f8f611f5737 # v3
1515
with:
1616
workflow: linting.yml
1717
workflow_conclusion: completed

0 commit comments

Comments
 (0)