Update general.json masses and thicknesses #90
Workflow file for this run
This file contains hidden or 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
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
environment-file: environment.yml | |
activate-environment: baby_1l_run_1 | |
- name: Run neutronics model | |
shell: bash -l {0} | |
working-directory: analysis/neutron | |
run: | | |
python openmc_model.py | |
jupyter-nbconvert --to notebook postprocessing.ipynb --execute | |
- name: Run tritium model | |
shell: bash -l {0} | |
working-directory: analysis/tritium | |
run: jupyter-nbconvert --to notebook tritium_model.ipynb --execute |