Skip to content

making use of openmc universe plot #38

making use of openmc universe plot

making use of openmc universe plot #38

# 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