Fix GH Actions #2192
Workflow file for this run
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: Build and Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-gcc-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
- name: Install prereq using conda | |
run: | | |
echo "$CONDA/bin" >> $GITHUB_PATH | |
conda install -c conda-forge gobject-introspection pygobject cmake=3.27.4 | |
- name: Install prereq using pip | |
run: | | |
pip install -r requirements.txt | |
- name: Install the package | |
run: | | |
pip install . | |
- name: Install NumCosmo from conda-forge | |
run: | | |
conda install -c conda-forge numcosmo | |
- name: Install cluster_toolkit from source | |
run: | | |
git clone https://github.com/tmcclintock/cluster_toolkit.git | |
cd cluster_toolkit | |
pip install . | |
- name: Install CCL from source | |
run: | | |
conda install -c conda-forge cmake swig | |
git clone https://github.com/LSSTDESC/CCL | |
cd CCL | |
git checkout 1a351df | |
pip install . | |
- name: Analysing the code with pylint | |
run: | | |
pip install pylint | |
pylint clmm | |
- name: Run the unit tests | |
run: | | |
pip install pytest pytest-cov | |
pytest tests/ --ignore=cluster_toolkit/tests --cov=clmm/ | |
env: | |
DISPLAY: test | |
- name: Install Sphinx prereq | |
run: | | |
conda install -c conda-forge sphinx sphinx_rtd_theme nbconvert pandoc ipython ipython_genutils | |
- name: Run the docs | |
run: | | |
make -C docs/ html | |
- name: Coveralls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
pip install coveralls | |
coveralls --service=github |