File tree 3 files changed +15
-139
lines changed
3 files changed +15
-139
lines changed Original file line number Diff line number Diff line change 1
1
name : Run tests and Commit
2
2
on : push
3
3
4
- steps :
5
- - uses : actions/checkout@v4
6
- - name : Set up Python
7
- uses : actions/setup-python@v5
8
- with :
9
- python-version : ' 3.10'
10
- - name : Install dependencies
11
- run : |
12
- python -m pip install --upgrade pip
13
- pip install -r requirements.txt
14
- - name : Test with unittest
15
- run : |
16
- python3 -m unittest test/sample_cases_test.py
4
+ jobs :
5
+ test :
6
+ steps :
7
+ - uses : actions/checkout@v4
8
+ - name : Set up Python
9
+ uses : actions/setup-python@v5
10
+ with :
11
+ python-version : ' 3.10'
12
+ - name : Install dependencies
13
+ run : |
14
+ python -m pip install --upgrade pip
15
+ pip install -r requirements.txt
16
+ - name : Test with unittest
17
+ run : |
18
+ python3 -m unittest test/sample_cases_test.py
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments