File tree Expand file tree Collapse file tree 3 files changed +16
-139
lines changed Expand file tree Collapse file tree 3 files changed +16
-139
lines changed Original file line number Diff line number Diff line change 11name : Run tests and Commit
22on : push
33
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+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : actions/checkout@v4
9+ - name : Set up Python
10+ uses : actions/setup-python@v5
11+ with :
12+ python-version : ' 3.10'
13+ - name : Install dependencies
14+ run : |
15+ python -m pip install --upgrade pip
16+ pip install -r requirements.txt
17+ - name : Test with unittest
18+ run : |
19+ 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