forked from fairlearn/fairlearn
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (55 loc) · 1.63 KB
/
nightly.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
name: nightly
on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
jobs:
all-deps:
strategy:
# Keep running remaining matrix jobs even if one fails
# to see all issues rather than just the first failure.
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
python: ["3.8", "3.9", "3.10", "3.11"]
requirementsPinned: ["true", "false"]
uses: ./.github/workflows/test-all-deps.yml
with:
os: ${{ matrix.os }}
python: ${{ matrix.python }}
requirementsPinned: ${{ matrix.requirementsPinned }}
codeCovPython: "3.11"
minimal-deps:
strategy:
# Keep running remaining matrix jobs even if one fails
# to see all issues rather than just the first failure.
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
python: ["3.8", "3.9", "3.10", "3.11"]
uses: ./.github/workflows/test-minimal-deps.yml
with:
os: ${{ matrix.os }}
python: ${{ matrix.python }}
codeCovPython: "3.11"
other-ml:
strategy:
# Keep running remaining matrix jobs even if one fails
# to see all issues rather than just the first failure.
fail-fast: false
matrix:
mlpackage: [lightgbm, xgboost, tensorflow, pytorch]
uses: ./.github/workflows/test-other-ml.yml
with:
os: ubuntu-latest
python: "3.11"
mlpackage: ${{ matrix.mlpackage }}
linting:
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.11"]
uses: ./.github/workflows/linting.yml
with:
os: ${{ matrix.os }}
python: ${{ matrix.python }}