We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3fbca40 + 6ba1ce5 commit 4cc9f76Copy full SHA for 4cc9f76
.github/workflows/CICD.yml
@@ -6,14 +6,17 @@ on:
6
jobs:
7
test:
8
runs-on: ubuntu-latest
9
- container: ghcr.io/geode-solutions/vtk:3.9-cpu
10
steps:
11
- - uses: actions/checkout@v3
12
- - name: Test
13
- run: |
14
- pip install pytest pytest-xprocess
15
- pip install -e .
16
- pytest
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
+ with:
+ python-version: "3.9"
+ - name: Test
+ run: |
+ pip install pytest pytest-xprocess
17
+ pip install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
18
+ pip install -e .
19
+ pytest
20
21
build:
22
0 commit comments