Skip to content

Add debug logging to weighted distances #256

Add debug logging to weighted distances

Add debug logging to weighted distances #256

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/[email protected]
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: Create environments
uses: snakemake/snakemake-github-action@v1
with:
directory: ".test"
snakefile: "workflow/Snakefile"
args: "--configfile config/config.yaml .test/targets.yaml --cores 1 --conda-create-envs-only --use-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: Dry run
uses: snakemake/snakemake-github-action@v1
with:
directory: ".test"
snakefile: "workflow/Snakefile"
args: "--configfile config/config.yaml .test/targets.yaml --dry-run"