File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 13
13
- name : Checkout
14
14
uses : actions/checkout@v3
15
15
16
+ - name : Set up Python
17
+ uses : actions/setup-python@v4
18
+ with :
19
+ python-version : " 3.10"
20
+
21
+ - name : Install dependencies
22
+ run : pip install -r requirements.txt
23
+
24
+ - name : Run tests
25
+ run : python -m unittest discover
26
+
16
27
- name : Clear space to remove unused folders
17
28
run : |
18
29
rm -rf /usr/share/dotnet
Original file line number Diff line number Diff line change 19
19
- name : Checkout
20
20
uses : actions/checkout@v3
21
21
22
+ - name : Set up Python
23
+ uses : actions/setup-python@v4
24
+ with :
25
+ python-version : " 3.10"
26
+
27
+ - name : Install dependencies
28
+ run : pip install -r requirements.txt
29
+
30
+ - name : Run tests
31
+ run : python -m unittest discover
32
+
22
33
- name : Clear space to remove unused folders
23
34
run : |
24
35
rm -rf /usr/share/dotnet
You can’t perform that action at this time.
0 commit comments