Skip to content

Add missing import #382

Add missing import

Add missing import #382

Workflow file for this run

name: Install
on: [push, pull_request]
jobs:
skip_duplicate:
permissions:
actions: write
contents: read
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.0
with:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
Install:
needs: skip_duplicate
if: ${{ needs.skip_duplicate.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup environment
uses: conda-incubator/setup-miniconda@v3
with:
channel-priority: strict
activate-environment: snakemake
auto-activate-base: false
environment-file: .test/environment_7.32.4.yaml
- name: Create environments
shell: bash -el {0}
run: snakemake --snakefile workflow/Snakefile --directory .test --configfile config/config.yaml .test/targets.yaml --conda-create-envs-only --use-conda -c1 --conda-frontend conda
Dry_run:
needs: skip_duplicate
if: ${{ needs.skip_duplicate.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup environment
uses: conda-incubator/setup-miniconda@v3
with:
channel-priority: strict
activate-environment: snakemake
auto-activate-base: false
environment-file: .test/environment_7.32.4.yaml
- name: Dry run
shell: bash -el {0}
run: snakemake --snakefile workflow/Snakefile --directory .test --configfile config/config.yaml .test/targets.yaml --dry-run