File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Issue assignment
2
+
3
+ on :
4
+ issues :
5
+ types : [opened]
6
+
7
+ jobs :
8
+ auto-assign :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : ' Auto-assign issue'
12
+
13
+ with :
14
+ assignees : thepetk,Solvik
15
+ numOfAssignee : 1
Original file line number Diff line number Diff line change
1
+ name : QA
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+ pull_request :
7
+ branches : [ main ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+
15
+ - name : Set up Python 3.9
16
+ uses : actions/setup-python@v2
17
+ with :
18
+ python-version : " 3.9"
19
+
20
+ - name : Install dependencies
21
+ run : |
22
+ python -m pip install --upgrade pip
23
+ pip install -r dev-requirements.txt
24
+
25
+ - name : Run qa
26
+ run : make qa
27
+
28
+ - name : Run mypy
29
+ run : make mypy
You can’t perform that action at this time.
0 commit comments