Merge pull request #24 from fusion-energy/tidy-vnv-docs #72
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: 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 |