We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ec8db9 + de979fb commit 7700142Copy full SHA for 7700142
2 files changed
.editorconfig
@@ -0,0 +1,21 @@
1
+root = true
2
+
3
+[*]
4
+indent_style = space
5
+indent_size = 4
6
+end_of_line = lf
7
+charset = utf-8
8
+trim_trailing_whitespace = true
9
+insert_final_newline = true
10
11
+[*.md]
12
+trim_trailing_whitespace = false
13
14
+[*.yml]
15
+indent_size = 2
16
17
+[*.yaml]
18
19
20
+[Makefile]
21
+indent_style = tab
.github/workflows/python-ci.yml
@@ -22,6 +22,11 @@ jobs:
22
with:
23
python-version: ${{ matrix.python-version }}
24
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ pip install -r requirements-dev.txt
29
30
- name: Syntax check with py_compile
31
run: |
32
find . -name "*.py" -exec python -m py_compile {} +
0 commit comments