Skip to content

run singularity too #628

run singularity too

run singularity too #628

Workflow file for this run

name: CI
on:
push:
branches:
- dev
- main
- ci
pull_request:
branches:
- dev
- main
release:
types: [published]
env:
NXF_SINGULARITY_CACHEDIR: "${{ github.workspace }}/singularity"
SINGULARITY_VERSION: "3.8.3"
jobs:
preload_docker:
uses: ./.github/workflows/preload-docker.yml
preload_singularity:
uses: ./.github/workflows/preload-singularity.yml
with:
singularity_version: ${{ env.SINGULARITY_VERSION }}

Check failure on line 26 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 26, Col: 28): Unrecognized named-value: 'env'. Located at position 1 within expression: env.SINGULARITY_VERSION .github/workflows/ci.yml (Line: 27, Col: 33): Unrecognized named-value: 'env'. Located at position 1 within expression: env.NXF_SINGULARITY_CACHEDIR
nxf_singularity_cachedir: ${{ env.NXF_SINGULARITY_CACHEDIR }}
standard_test_docker:
needs: preload_docker
uses: ./.github/workflows/standard-test.yml
with:
cache-key: ${{ needs.preload_docker.outputs.cache-key }}
docker: true
standard_test_singularity:
needs: preload_singularity
uses: ./.github/workflows/standard-test.yml
with:
cache-key: ${{ needs.preload_singularity.outputs.cache-key }}
singularity: true
singularity_version: ${{ env.SINGULARITY_VERSION }}
nxf_singularity_cachedir: ${{ env.NXF_SINGULARITY_CACHEDIR }}