-
Notifications
You must be signed in to change notification settings - Fork 10
84 lines (82 loc) · 2.17 KB
/
ci.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: PINNSTRIPES-CI
on:
push:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
pull_request:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install formatting dependencies
run: |
pip install black
pip install isort
pip install codespell
- name: Formatting
run: |
source .github/linters/formatting.sh
format pinn_spm_param true
format BayesianCalibration_spm true
codespell
Test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -r requirements.txt
- name: Test SPM preprocess
run: |
cd pinn_spm_param/integration_spm
python main.py -nosimp -opt -lean -p 0.5 1
cd ../preProcess
python makeDataset_spm.py -nosimp -df ../integration_spm -frt 1 -p 0.5 1
- name: Test SPM
run: |
cd pinn_spm_param/tests
pytest -v test_spm.py
- name: Test SPM post process
run: |
cd pinn_spm_param/tests
pytest -v test_spm_postProc.py
- name: Test SPM utils
run: |
pip install black
cd pinn_spm_param/tests
pytest -v test_spm_utils.py
- name: Test SPM Bayesian calibration
run: |
cd BayesianCalibration_spm
bash exec_test.sh