Add linting+docs to GitHub Actions, fix docs

This commit is contained in:
Seth Michael Larson 2020-10-27 11:28:55 -05:00 committed by GitHub
parent ae70f03df3
commit 28951c0ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 9 deletions

36
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: CI
on: [push, pull_request]
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: python3.8 -m pip install nox
- name: Lint the code
run: nox -s lint
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: python3.8 -m pip install nox
- name: Build documentation
run: nox -s docs

View File

@ -57,15 +57,15 @@ Function Application, GroupBy & Window
DataFrameGroupBy.agg DataFrameGroupBy.agg
DataFrameGroupBy.aggregate DataFrameGroupBy.aggregate
DataFrameGroupBy.count DataFrameGroupBy.count
DataFrameGroupByGroupBy.mad DataFrameGroupBy.mad
DataFrameGroupByGroupBy.max DataFrameGroupBy.max
DataFrameGroupByGroupBy.mean DataFrameGroupBy.mean
DataFrameGroupByGroupBy.median DataFrameGroupBy.median
DataFrameGroupByGroupBy.min DataFrameGroupBy.min
DataFrameGroupByGroupBy.nunique DataFrameGroupBy.nunique
DataFrameGroupByGroupBy.std DataFrameGroupBy.std
DataFrameGroupByGroupBy.sum DataFrameGroupBy.sum
DataFrameGroupByGroupBy.var DataFrameGroupBy.var
GroupBy GroupBy
.. currentmodule:: eland .. currentmodule:: eland