-
Notifications
You must be signed in to change notification settings - Fork 40
125 lines (119 loc) · 3.58 KB
/
xskillscore_testing.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: xskillscore testing
on:
pull_request:
workflow_dispatch: # allows you to trigger manually
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
detect-ci-trigger:
name: detect ci trigger
runs-on: ubuntu-latest
outputs:
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: xarray-contrib/ci-trigger@v1.1
id: detect-trigger
with:
keyword: "[skip-ci]"
test: # Runs testing suite on various python versions.
name: Test xskillscore, python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge
mamba-version: '*'
activate-environment: xskillscore-minimum-tests
python-version: ${{ matrix.python-version }}
- name: Set up conda environment
run: |
mamba env update -f ci/minimum-tests.yml
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Run tests
run: |
pytest -n 4 --cov=xskillscore --cov-report=xml --verbose
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: false
doctest: # Tests all docstrings
name: Doctests
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge
mamba-version: "*"
activate-environment: xskillscore-minimum-tests
python-version: 3.9
- name: Set up conda environment
run: |
mamba env update -f ci/minimum-tests.yml
- name: Install xskillscore
run: |
python -m pip install --no-deps -e .
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Run doctests
run: |
python -m pytest --doctest-modules xskillscore --ignore xskillscore/tests
docs_notebooks: # Checks that pre-compiled notebooks in docs still work.
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge
mamba-version: "*"
activate-environment: xskillscore-docs-notebooks
python-version: 3.9
- name: Set up conda environment
run: |
mamba env update -f ci/docs_notebooks.yml
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Test notebooks in docs
run: |
pushd docs
nbstripout source/*.ipynb
make -j4 html
popd