Skip to content

Added NGBoost trainer and estimator #47

Added NGBoost trainer and estimator

Added NGBoost trainer and estimator #47

Workflow file for this run

name: test
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
jobs:
test:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install ".[dev]"
- name: Run mypy
run: mypy .
- name: Run black
run: |
black nrel tests --check
- name: Python unit tests
run: |
pytest tests/ -v