Skip to content

Commit d315e81

Browse files
committed
Initial commit...
0 parents  commit d315e81

Some content is hidden

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

58 files changed

+20200
-0
lines changed

.editorconfig

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
tab_width = 4
11+
12+
[*.{js,ts,fs,json,jsx,tsx,*rc,yml,yaml}]
13+
indent_size = 2
14+
15+
[*.py]
16+
indent_size = 4
17+
18+
[*.md]
19+
indent_size = 2
20+
max_line_length = off
21+
trim_trailing_whitespace = false
22+
23+
[*.{html,xml,csproj,targets}]
24+
indent_size = 2
25+
tab_width = 2
26+
27+
[*.yml]
28+
indent_size = 2
29+
tab_width = 2

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
continuous-integration:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Python '3.7'
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.7'
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r requirements.txt
22+
- name: Style check
23+
run: |
24+
black . --check --color --diff --target-version py37
25+
- name: Lint
26+
run: |
27+
prospector
28+
- name: Test
29+
run: |
30+
pytest

0 commit comments

Comments
 (0)