We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1322d commit 53c7d16Copy full SHA for 53c7d16
2 files changed
.github/workflows/nextflow-plugin.yml
@@ -30,6 +30,10 @@ jobs:
30
wget -qO- https://get.nextflow.io | bash
31
sudo mv nextflow /usr/local/bin/
32
nextflow -version
33
+ - name: Install Python build dependencies
34
+ run: |
35
+ python -m pip install --upgrade pip
36
+ pip install build
37
- name: Test versions
38
run: |
39
# Get plugin version from plugins/nf-python/src/resources/META-INF/MANIFEST.MF
.github/workflows/plugin-release.yml
@@ -41,6 +41,14 @@ jobs:
41
with:
42
distribution: 'temurin'
43
java-version: '17'
44
+ - name: Set up Python
45
+ uses: actions/setup-python@v5
46
+ with:
47
+ python-version: '3.10'
48
49
50
51
52
- name: Build Nextflow plugin
53
54
make buildPlugins
0 commit comments