Skip to content

Commit

Permalink
ci: replace by micromamba
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Jan 23, 2025
1 parent 91aa1b8 commit 5ce4124
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pydamage_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip_ci]')"
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v3
- uses: mamba-org/setup-micromamba@v2
with:
auto-update-conda: true
mamba-version: "*"
channels: conda-forge,bioconda
channel-priority: true
environment-file: environment.yml
activate-environment: pydamage
environment-name: pydamage
init-shell: >-
bash
cache-environment: true
post-cleanup: 'all'
- name: Test with pytest
shell: bash -l {0}
shell: bash -el {0}
run: |
pip install -e .
pip install pytest
pytest
- name: Check pydamage help message
shell: bash -l {0}
shell: bash -el {0}
run: |
pydamage --help
- name: Check pydamage on test data
shell: bash -l {0}
shell: bash -el {0}
run: |
pydamage analyze --verbose tests/data/aligned.bam
pydamage filter pydamage_results/pydamage_results.csv
Expand Down

0 comments on commit 5ce4124

Please sign in to comment.