-
Notifications
You must be signed in to change notification settings - Fork 252
170 lines (145 loc) · 4.71 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: CI
defaults:
run:
shell: bash # To override PowerShell on Windows
on:
# Trigger the workflow on push or pull request,
# push only for the master branch,
# pull request for master and feature branches.
push:
branches:
- master
- 'feature/*'
pull_request:
# don't trigger for draft PRs
types: [ opened, synchronize, reopened, ready_for_review ]
# Trigger workflow once per day at midnight
schedule:
- cron: '0 0 * * *'
# Trigger the workflow on manual dispatch
workflow_dispatch:
inputs:
tmate_enabled:
type: boolean
description: 'Enable tmate debugging?'
required: false
default: false
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11']
include: # Run macos and windows tests on only one python version
- os: windows-latest
python-version: '3.11'
- os: macos-latest
python-version: '3.11'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt
python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap]
if [ "$RUNNER_OS" != "Windows" ]; then
# Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support)
python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap,ray] # include other deps so that they are taking into account during ray install
fi
python -m spacy download en_core_web_md
python -m pip freeze
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.tmate_enabled }}
with:
limit-access-to-actor: true
- name: Test with pytest
run: |
pytest -m tf1 alibi
pytest -m "not tf1" alibi
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
directory: .
env_vars: ${{matrix.os}}, ${{matrix.python-version}}
fail_ci_if_error: false
verbose: true
- name: Build Python package
run: |
make build_pypi
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt
python -m pip install --upgrade --upgrade-strategy eager .[all]
- name: Lint with flake8
run: |
flake8 alibi
- name: Typecheck with mypy
run: |
mypy alibi
docs:
runs-on: ubuntu-latest
container:
image: readthedocs/build:ubuntu-22.04-2022.03.15
options: --user root
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/docs.txt
python -m pip freeze
- name: Build documentation to html
run: |
make build_docs
- name: Build documentation to pdf via latex
run: |
make build_latex
licenses:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Check 3rd party licenses haven't changed
run: |
pip install "tox>=3.21.0,<4.0.0"
make licenses
make check_licenses
optional_dependencies:
runs-on: ubuntu-latest
strategy:
matrix:
env: [ 'default', 'tensorflow', 'torch', 'shap', 'ray', 'all' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Check optional dependency imports are protected
run: |
pip install "tox>=3.21.0,<4.0.0"
tox -e ${{matrix.env}}