Skip to content

Merge pull request #24 from fusion-energy/tidy-vnv-docs #72

Merge pull request #24 from fusion-energy/tidy-vnv-docs

Merge pull request #24 from fusion-energy/tidy-vnv-docs #72

Workflow file for this run

name: Examples
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
python-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install rad_point_kernel_core
- run: pip install -e .
- run: pip install matplotlib
- uses: ./.github/actions/setup-openmc
- name: Run numbered examples (studies skipped - too slow for CI)
run: |
for f in examples/python/[0-9]_*.py; do
echo "=== $f ==="
python "$f"
done