mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Add linting+docs to GitHub Actions, fix docs
This commit is contained in:
parent
ae70f03df3
commit
28951c0ad1
36
.github/workflows/ci.yml
vendored
Normal file
36
.github/workflows/ci.yml
vendored
Normal 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
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user