-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
92 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
name: sphere | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: continuumio/miniconda3 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: install dependencies | ||
run: | | ||
conda install -c conda-forge mamba | ||
mamba install -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master -y | ||
- name: install package with tests | ||
run: | | ||
pip install . | ||
- name: Run tests | ||
run: | | ||
pytest tests/test_csg_cad_sphere.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
name: spherical shell | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: continuumio/miniconda3 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: install dependencies | ||
run: | | ||
conda install -c conda-forge mamba | ||
mamba install -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master -y | ||
- name: install package with tests | ||
run: | | ||
pip install . | ||
- name: Run tests | ||
run: | | ||
pytest tests/test_csg_cad_sphericalshell.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
name: two touching cuboids | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: continuumio/miniconda3 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: install dependencies | ||
run: | | ||
conda install -c conda-forge mamba | ||
mamba install -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master -y | ||
- name: install package with tests | ||
run: | | ||
pip install . | ||
- name: Run tests | ||
run: | | ||
pytest tests/test_csg_cad_two_touching_cuboids.py |