Skip to content

Add delaunay_3d function to generate 3D mesh #163

Add delaunay_3d function to generate 3D mesh

Add delaunay_3d function to generate 3D mesh #163

name: Unit Testing and Deployment
on:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 4 * * *"
push:
tags:
- "*"
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ALLOW_PLOTTING: true
SHELLOPTS: 'errexit:pipefail'
jobs:
Unit_Testing:
name: Unit Testing
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
include:
- python-version: '3.12'
vtk-version: 'latest'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Testing Requirements
run: |
pip install -e .
pip install -r requirements_test.txt
- name: Unit Testing
run: |
python -m pytest -v --doctest-modules src/pvgmsh