Skip to content

Commit

Permalink
Adding step for importing library and check plotting support. (#2399)
Browse files Browse the repository at this point in the history
* Adding step  for importing library and check plotting support.

* better message
  • Loading branch information
germa89 authored Oct 10, 2023
1 parent ca1f62b commit b7f1753
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ jobs:
library-name: ${{ env.PACKAGE_NAME }}
operating-system: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}

- name: "Importing library"
run: |
python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"
- name: "Checking plotting support"
run:
python -c "from pyvista.plotting import system_supports_plotting; print('System support plotting ' + str(system_supports_plotting()))"


docs-build:
name: "Build documentation"
Expand Down

0 comments on commit b7f1753

Please sign in to comment.