Skip to content

Improvements in the documentation #300

Improvements in the documentation

Improvements in the documentation #300

Workflow file for this run

name: Python test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
python-version: "3.8"
- os: macos-latest
python-version: "3.9"
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Special dependencies for macos
run: |
brew install hdf5
pip3 install numpy==1.22.2
pip3 install tables==3.7.0
if: ${{ matrix.os == 'macos-latest' }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest requests-mock
python setup.py install
- name: Test with pytest
run: |
pytest