We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51cd688 commit 4c1c454Copy full SHA for 4c1c454
1 file changed
.github/workflows/ci.yml
@@ -41,3 +41,24 @@ jobs:
41
42
- name: Run tests
43
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