-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add extra action to test conda build and install
- Loading branch information
1 parent
d775072
commit fc392a7
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|