Skip to content

Commit 20220a4

Browse files
committedAug 11, 2022
first commit
0 parents  commit 20220a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+6501
-0
lines changed
 

‎.flake8

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[flake8]
2+
max-line-length = 88
3+
max-complexity = 10
4+
select = C,E,F,W,B,B950
5+
ignore = E203,E501,W503
6+
exclude =
7+
.git,
8+
__pycache__,
9+
*.egg-info,
10+
.nox,
11+
.pytest_cache,
12+
.mypy_cache
13+
__init__.py

‎.github/workflows/build-docs.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build docs
2+
on:
3+
push:
4+
branches: ["main"]
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: "actions/checkout@v3"
10+
- uses: "actions/setup-python@v4"
11+
with:
12+
python-version: 3.8
13+
- name: Install poetry
14+
run: |
15+
python -m pip install --upgrade pip
16+
curl -sSL https://install.python-poetry.org | python3 -
17+
- name: Configure poetry
18+
run: poetry config virtualenvs.create false
19+
- name: Install dependencies
20+
run: poetry install
21+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)
Please sign in to comment.