Bug fix for geometries without bounding box #44
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 CI will lauch a Docker image that contains all the dependencies required | |
# within that image the pytest test suite is run | |
name: CI with install | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
paths: | |
- "**.py" | |
- "**.ipynb" | |
- "**.yml" | |
- "**.cfg" | |
- "**.toml" | |
- "**.sh" | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
container: | |
image: openmc/openmc:latest-dagmc | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: install package with tests | |
run: | | |
pip install .[tests] | |
- name: Run tests | |
run: | | |
cd tests | |
pytest -v |