-
Notifications
You must be signed in to change notification settings - Fork 32
48 lines (39 loc) · 1.1 KB
/
dask.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
name: dask
on:
push:
branches:
- main
paths:
- 'optuna_integration/dask/**'
- '.github/workflows/dask.yml'
- 'tests/dask/**'
pull_request:
paths:
- 'optuna_integration/dask/**'
- '.github/workflows/dask.yml'
- 'tests/dask/**'
schedule:
- cron: '0 23 * * SUN-THU'
workflow_dispatch:
jobs:
tests:
if: (github.event_name == 'schedule' && github.repository == 'optuna/optuna-integration') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
# Install optuna from optuna master
pip install git+https://github.com/optuna/optuna@master
pip install --progress-bar off .[test]
pip install --progress-bar off -r optuna_integration/dask/requirements.txt
- name: Tests
run: |
pytest tests/dask