-
Notifications
You must be signed in to change notification settings - Fork 7
63 lines (55 loc) · 1.49 KB
/
test.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
name: Test
on:
pull_request: {}
push:
branches: master
tags: "*"
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies with pip
run: |
python -m pip install -e .[dev]
- uses: pre-commit/action@v3.0.1
test_converter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies with pip
run: |
python -m pip install -e .[dev]
- name: Run conversion tests
run: |
pytest test/test_pysonde.py
pytest test/test_mwx_output.py
pytest test/test_cor_output.py
test_plotting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies with pip
run: |
python -m pip install -e .[dev]
- name: Create plots
run: |
python scripts/plot_radiosonde_data.py -i examples/level1/EUREC4A_BCO_Vaisala-RS_L1-ascent_20200126T2244_v3.0.0.nc -o artifacts
- name: Upload plots
uses: actions/upload-artifact@v4
with:
name: figures
path: |
artifacts