Skip to content

Update astral-sh/setup-uv action to v7.1.5 #12129

Update astral-sh/setup-uv action to v7.1.5

Update astral-sh/setup-uv action to v7.1.5 #12129

name: Create a pipeline and run nf-core linting
on:
push:
branches:
- dev
# https://docs.renovatebot.com/key-concepts/automerge/#branch-vs-pr-automerging
- "renovate/**" # branches Renovate creates
paths-ignore:
- "docs/**"
- "CHANGELOG.md"
pull_request:
paths-ignore:
- "docs/**"
- "CHANGELOG.md"
release:
types: [published]
workflow_dispatch:
# Cancel if a newer run is started
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
MakeTestWorkflow:
runs-on:
- runs-on=${{ github.run_id }}-make-test-worfklow
- runner=4cpu-linux-x64
env:
NXF_ANSI_LOG: false
strategy:
matrix:
NXF_VER:
- "25.04.0"
- "latest-everything"
steps:
- name: go to subdirectory and change nextflow workdir
run: |
mkdir -p create-lint-wf
cd create-lint-wf
export NXF_WORK=$(pwd)
# Get the repo code
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
name: Check out source-code repository
# Set up nf-core/tools
- name: Set up Python 3.14
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
with:
python-version: "3.14"
- name: Install uv
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7
with:
enable-cache: true
- name: Install python dependencies
run: uv sync --all-extras
- name: run create-lint-wf
uses: ./.github/actions/create-lint-wf
with:
NXF_VER: ${{ matrix.NXF_VER }}
# Build a module from the template
- name: nf-core modules create
run: uv run nf-core --verbose --log-file log.txt modules create bpipe --dir nf-core-testpipeline --author @nf-core-bot --label process_low --meta
working-directory: create-lint-wf
# Remove TODO statements
- name: remove TODO
run: find nf-core-testpipeline -type f -exec sed -i '/TODO nf-core:/d' {} \;
working-directory: create-lint-wf
# Uncomment includeConfig statement
- name: uncomment include config
run: find nf-core-testpipeline -type f -exec sed -i 's/\/\/ includeConfig/includeConfig/' {} \;
working-directory: create-lint-wf
# Run the other nf-core commands
- name: nf-core pipelines list
run: uv run nf-core --log-file log.txt pipelines list
working-directory: create-lint-wf
- name: nf-core pipelines schema
run: uv run nf-core --log-file log.txt pipelines schema build --dir nf-core-testpipeline/ --no-prompts
working-directory: create-lint-wf
- name: Cleanup work directory
run: sudo rm -rf create-lint-wf
if: always()