-
Notifications
You must be signed in to change notification settings - Fork 2
139 lines (131 loc) · 3.9 KB
/
ci.yaml
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: '0 0 * * *' # Daily “At 00:00” UTC
workflow_dispatch: # allows you to trigger the workflow run manually
jobs:
build:
if: |
github.repository == 'NCAR/ldcpy'
name: Build (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
# python-version: ['3.7', '3.8', '3.9']
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v2
with:
channels: conda-forge
environment-file: ci/environment.yml
activate-environment: ldcpy
- name: Install ldcpy
run: |
conda install ldcpy
conda list
- name: Run Tests
run: |
pytest --cov=./ --cov-report=xml
- name: Upload code coverage to Codecov
uses: codecov/[email protected]
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
# build:
# if: |
# github.repository == 'NCAR/ldcpy'
# name: Build (${{ matrix.python-version }}, ${{ matrix.os }})
# runs-on: ${{ matrix.os }}
# defaults:
# run:
# shell: bash -l {0}
# strategy:
# fail-fast: false
# matrix:
# os: ['ubuntu-latest']
# # python-version: ['3.7', '3.8', '3.9']
# python-version: ['3.10', '3.11', '3.12']
# steps:
# - name: Cancel previous runs
# uses: styfle/[email protected]
# with:
# access_token: ${{ github.token }}
# - uses: actions/checkout@v3
# - uses: conda-incubator/setup-miniconda@v3
# with:
# channels: conda-forge
# channel-priority: strict
# mamba-version: '*'
# activate-environment: ldcpy # Defined in ci/environment.yml
# auto-update-conda: false
# python-version: ${{ matrix.python-version }}
# environment-file: ci/environment.yml
#
# - name: Install ldcpy
# run: |
# conda install ldcpy
# conda list
#
# - name: Run Tests
# run: |
# pytest --cov=./ --cov-report=xml
#
# - name: Upload code coverage to Codecov
# uses: codecov/[email protected]
# with:
# file: ./coverage.xml
# flags: unittests
# env_vars: OS,PYTHON
# name: codecov-umbrella
# fail_ci_if_error: false
upstream-dev:
if: |
github.repository == 'NCAR/ldcpy'
name: upstream-dev-py311
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
continue-on-error: true # Allow this job to fail without failing the workflow
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
# - uses: conda-incubator/setup-miniconda@v3
- uses: mamba-org/setup-micromamba@v2
with:
channels: conda-forge
# channel-priority: strict
mamba-version: '*'
activate-environment: ldcpy # Defined in ci/environment.yml
# auto-update-conda: false
python-version: 3.11
environment-file: ci/upstream-dev-environment.yml
- name: Install ldcpy
run: |
conda install ldcpy
conda list
- name: Run Tests
run: |
pytest --cov=./ --cov-report=xml