Skip to content

Commit c039f99

Browse files
authored
Merge pull request #287 from y0z/feature/fix-ci
Another fix for syntax error in YAML file of rapids CI
2 parents 81328c2 + 4fc2e53 commit c039f99

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/rapids.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: base
1+
name: rapids
22

33
on:
44
schedule:
@@ -17,19 +17,19 @@ jobs:
1717
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
1818

1919
steps:
20-
- uses: actions/checkout@v4
21-
- name: setup-python${{ matrix.python-version }}
22-
uses: actions/setup-python@v5
23-
with:
24-
python-version: ${{ matrix.python-version }}
25-
- name: Install (Python)
26-
run: |
27-
python -m pip install --upgrade pip
28-
pip install --progress-bar off -U setuptools
29-
pip install git+https://github.com/optuna/optuna.git
30-
python -c 'import optuna'
31-
- name: Run examples
32-
run: |
33-
python -m py_compile rapids/rapids_simple.py # due to difficulty in importing, compile only
34-
env:
35-
OMP_NUM_THREADS: 1
20+
- uses: actions/checkout@v4
21+
- name: setup-python${{ matrix.python-version }}
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
- name: Install (Python)
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install --progress-bar off -U setuptools
29+
pip install git+https://github.com/optuna/optuna.git
30+
python -c 'import optuna'
31+
- name: Run examples
32+
run: |
33+
python -m py_compile rapids/rapids_simple.py # due to difficulty in importing, compile only
34+
env:
35+
OMP_NUM_THREADS: 1

0 commit comments

Comments
 (0)