Skip to content

Commit

Permalink
ci: add extra action to test conda build and install
Browse files Browse the repository at this point in the history
  • Loading branch information
AngRodrigues committed Dec 16, 2024
1 parent d775072 commit fc392a7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test_conda_build_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Conda Build and Import

on:
workflow_dispatch:

jobs:
test-conda-build:
runs-on: ubuntu-24.04

steps:
# Step 1: Checkout the branch
- name: Checkout code
uses: actions/checkout@v4

# Step 2: Set up Conda
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.10 # Specify the Python version

# Step 3: Install conda-build
- name: Install conda-build
run: conda install -y conda-build

0 comments on commit fc392a7

Please sign in to comment.