File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # EditorConfig is awesome: https://EditorConfig.org
2+
3+ # top-most EditorConfig file
4+ root = true
5+
6+ [* ]
7+ charset = utf-8
8+ end_of_line = lf
9+ insert_final_newline = true
10+ trim_trailing_whitespace = true
11+
12+ [* .python ]
13+ indent_style = space
14+ tab_width = 4
15+ max_line_length = 120
16+
17+ [CODEOWNERS ]
18+ indent_style = tab
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ name: "CodeQL"
1313
1414on :
1515 push :
16- branches : [ master ]
16+ branches : [ master, main ]
1717 pull_request :
1818 # The branches below must be a subset of the branches above
19- branches : [ master ]
19+ branches : [ master, main ]
2020 schedule :
2121 - cron : ' 34 19 * * 2'
2222
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ name: Python package
55
66on :
77 push :
8- branches : [ master ]
8+ branches : [ master, main ]
99 pull_request :
10- branches : [ master ]
10+ branches : [ master, main ]
1111
1212jobs :
1313 build :
Original file line number Diff line number Diff line change 1+ * denis.averin@aspose.com
Original file line number Diff line number Diff line change 3232.PHONY : check_git
3333check_git :
3434 git fetch origin
35- git diff origin/master --exit-code
35+ git diff origin/main --exit-code
3636
3737.PHONY : publish
3838publish : check_git test clean dist
You can’t perform that action at this time.
0 commit comments