Skip to content

Commit 4c1c454

Browse files
author
nazarfil
committed
fix: add conda build to ci workflow
1 parent 51cd688 commit 4c1c454

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,24 @@ jobs:
4141

4242
- name: Run tests
4343
run: pytest --cov=. --cov-report html --cov-report term --cov-fail-under=25
44+
conda-build:
45+
name: Conda build check
46+
runs-on: ubuntu-latest
47+
steps:
48+
- uses: actions/checkout@v4
49+
50+
- name: Setup Miniconda
51+
uses: conda-incubator/setup-miniconda@v3
52+
with:
53+
auto-activate-base: true
54+
activate-environment: true
55+
python-version: 3.13
56+
57+
- name: Install conda tools
58+
run: conda install -y conda-build anaconda-client
59+
60+
- name: Dry-run conda build
61+
shell: bash -l {0}
62+
working-directory: recipe
63+
run: |
64+
conda build . --channel conda-forge --channel bioconda

0 commit comments

Comments
 (0)