Skip to content

Commit

Permalink
LightGBM repro
Browse files Browse the repository at this point in the history
  • Loading branch information
jayqi committed Apr 29, 2024
1 parent e0cbb15 commit f5186b2
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/lightgbm-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: tests

on:
workflow_dispatch:

jobs:
install:
name: "Install LightGBM from PyPI on macOS"
runs-on: macos-latest

steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Print system information
run: |
sw_vers
- name: Install LightGBM with pip
run: |
python -m pip install --upgrade pip
pip install lightgbm
install-source:
name: "Install LightGBM source from PyPI on macOS"
runs-on: macos-latest

steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Print system information
run: |
sw_vers
- name: Install LightGBM with pip
run: |
python -m pip install --upgrade pip
pip install lightgbm --no-binary lightgbm

0 comments on commit f5186b2

Please sign in to comment.