Skip to content

Bump version: 0.2.2 → 0.3.0 #46

Bump version: 0.2.2 → 0.3.0

Bump version: 0.2.2 → 0.3.0 #46

Workflow file for this run

name: Tests matrix
on: [pull_request, push]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip pycdfpp
pip install -e .
pip install -r requirements_dev.txt
pip install pytest sphinx pandoc
pip install -r docs/requirements.txt
- name: Test with pytest
run: |
pytest
make doctest