Skip to content

fix install

fix install #14

Workflow file for this run

name: Test Build of conda packages
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ "*" ]
# pull_request:
# branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
# workflow_dispatch:
jobs:
conda_build:
name: Test conda deployment of package with Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v4
- name: Conda environment creation and activation
uses: ./.github/actions/setup-conda
- name: Build package
run: conda build --no-copy-test-source-files recipe.local --output-folder ./conda_packages
- name: Install package
run: conda install -c ./conda_packages acoular
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: conda-package
path: ./conda_packages