-
Notifications
You must be signed in to change notification settings - Fork 11
43 lines (37 loc) · 1.17 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
name: CI testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
testing:
name: CI (Python=${{ matrix.python-version }}, OS=${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- name: checkout actions
uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: install dependencies
run: conda install -c conda-forge openmc -y
- name: install package
run: |
python -m pip install --upgrade pip
python -m pip install .
python -c 'import neutronics_material_maker'
python -m pip install .[density,tests]
- name: run pytest
run: python -m pytest tests -v --cov=neutronics_material_maker --cov-report term --cov-report html:htmlcov --cov-report xml --junitxml=test-reports/junit.xml