Skip to content

expand denv_fullpath deduction to avoid realpath #79

expand denv_fullpath deduction to avoid realpath

expand denv_fullpath deduction to avoid realpath #79

Workflow file for this run

---
name: ShellCheck and Test
on:
push:
paths:
- 'denv'
- '_denv_entrypoint'
- 'install'
- 'uninstall'
- 'ci/test'
- 'ci/check'
workflow_dispatch:
pull_request:
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
run: ./ci/check
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runner: [docker, podman, singularity, apptainer]
include:
- os: macos-latest
runner: docker
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: eWaterCycle/setup-singularity@v7
if: ${{matrix.runner == 'singularity'}}
with:
singularity-version: 3.8.3
- uses: eWaterCycle/setup-apptainer@v2
if: ${{matrix.runner == 'apptainer'}}
with:
apptainer-version: 1.1.9
- uses: douglascamata/setup-docker-macos-action@v1-alpha
if: ${{matrix.os == 'macos-latest'}}
- name: Install
run: sudo ./install
- name: Test
env:
DENV_RUNNER: ${{matrix.runner}}
run: ./ci/test