Try to use mamba for GitHub Actions. #198
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'article_data/**' | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'CONTRIBUTORS.md' | |
- 'LICENSE' | |
- 'tutorials/**' | |
- 'pictures/**' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'article_data/**' | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'CONTRIBUTORS.md' | |
- 'LICENSE' | |
- 'tutorials/**' | |
- 'pictures/**' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
python-version: [3.11] | |
runs-on: ${{ matrix.platform }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
micromamba-version: '1.5.6-0' # any version from https://github.com/mamba-org/micromamba-releases | |
environment-file: environment.yml | |
init-shell: >- | |
bash | |
cache-environment: true | |
post-cleanup: 'all' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -e . --config-settings editable_mode=compat | |
pip install ontosunburst | |
- name: Test with pytest | |
run: | | |
cd test | |
pytest test_proteomes.py | |
pytest test_clustering.py | |
pytest test_annotation.py | |
pytest test_workflow.py | |
pytest test_precomputed.py | |
pytest test_eggnog.py | |
pytest test_report.py |