Remove split_* subfolders from output/ as well #92
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
name: NiChart_DLMUSE building test for ubuntu | |
# workflow dispatch has been added for testing purposes | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ["ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Set-up miniconda for macos and ubuntu | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: 3.12 | |
miniconda-version: "latest" | |
- name: Create conda env | |
run: conda create -n NCP python=3.12 | |
- name: Install pip | |
run: conda run -n NCP conda install pip | |
- name: Build NiChart_DLMUSE from source | |
run: | | |
pip install setuptools twine wheel | |
pip install -r requirements.txt | |
python3 -m pip install -e . |