Update README.md #442
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: Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- dev | |
- master | |
push: | |
branches: | |
- dev | |
- master | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: [3.8, 3.9] | |
timeout-minutes: 60 # add a timeout | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
sudo apt-get update | |
sudo apt-get install openslide-tools | |
sudo apt-get install pandoc | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-activate-base: false | |
activate-environment: pathml | |
environment-file: environment.yml | |
mamba-version: "*" | |
python-version: ${{ matrix.python-version }} | |
- name: Debugging | |
run: | | |
echo "Printing the environment.yml file..." | |
cat environment.yml | |
echo "Checking the status of mamba..." | |
mamba --version | |
echo "Checking the available disk space..." | |
df -h | |
- name: Install dependencies with mamba | |
shell: bash -l {0} | |
run: mamba env update --file environment.yml --name pathml | |
- name: Conda info | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
- name: Install PathML | |
shell: bash -l {0} | |
run: pip install -e . | |
- name: Install python-spams | |
shell: bash -l {0} | |
run: pip install python-spams | |
- name: disk usage | |
shell: bash -l {0} | |
run: | | |
sudo df -h | |
sudo du -h | |
- name: Test with pytest and generate coverage report | |
shell: bash -l {0} | |
run: | | |
coverage run -m pytest -m "not slow" | |
coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
name: codecov-umbrella | |
verbose: true | |
- name: Compile docs | |
shell: bash -l {0} | |
run: | | |
cd docs | |
pip install -r readthedocs-requirements.txt | |
make html |