-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (46 loc) · 1.32 KB
/
ci_with_install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This CI will launch 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-ignore:
- 'docs/**'
- '.gitignore'
- '*.md'
- 'CITATION.cff'
- 'LICENSE.txt'
- 'readthedocs.yml'
jobs:
testing:
runs-on: ubuntu-latest
container:
image: openmc/openmc:develop
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: install package
run: |
pip install --upgrade pip
pip install .
python -c "import openmc_cylindrical_mesh_plotter"
- name: install packages for tests
run: |
pip install .[tests]
- name: Run test_utils
run: |
pytest tests
- name: Run examples
run: |
cd examples
python plot_phir_slice_point_source_combined_multiple_tallies.py
python plot_phir_slice_point_source.py
python plot_phir_slice_ring_source.py
python plot_rz_slice_point_source_combined_multiple_tallies.py
python plot_rz_slices_point_source.py
python plot_rz_slices_ring_source.py
- name: install packages with GUI
run: |
pip install .[gui]