Skip to content

Review and modernization of the package #39

Review and modernization of the package

Review and modernization of the package #39

Workflow file for this run

name: "Testing Pull Request"
on:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Installing conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: anaconda, conda-forge
- name: Installing packages
shell: bash -el {0}
run: |
conda install --yes -c conda-forge -c anaconda pythonocc-core
python -m pip install --upgrade pip
python -m pip install smithers[vtk]
python -m pip install .[test]
- name: Test with pytest
shell: bash -el {0}
run: |
python -m pytest