Skip to content

Commit 7700142

Browse files
Merge pull request steam-bell-92#722 from Ashvin-KS/feat/editorconfig
Add .editorconfig for consistent editor settings
2 parents 5ec8db9 + de979fb commit 7700142

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
indent_size = 2
19+
20+
[Makefile]
21+
indent_style = tab

.github/workflows/python-ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install -r requirements-dev.txt
29+
2530
- name: Syntax check with py_compile
2631
run: |
2732
find . -name "*.py" -exec python -m py_compile {} +

0 commit comments

Comments
 (0)