Skip to content

Added 'fit_single_trees' argument to volcanoes config files. #283

Added 'fit_single_trees' argument to volcanoes config files.

Added 'fit_single_trees' argument to volcanoes config files. #283

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.6'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install .
- name: Lint with flake8
run: |
flake8 --max-line-length 80
- name: Test with pytest
run: |
pytest