File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,11 +6,25 @@ name: Publish to PyPI
66on :
77 release :
88 types : [created]
9+ workflow_dispatch :
910
1011jobs :
11- deploy :
12+ test :
1213 runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Set up Python
17+ uses : actions/setup-python@v2
18+ with :
19+ python-version : ' 3.x'
20+ - name : Install dependencies
21+ run : if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
22+ - name : Test with unittest
23+ run : python -m unittest discover -v -s ./tests -p test_*.py
1324
25+ deploy :
26+ runs-on : ubuntu-latest
27+ needs : test
1428 steps :
1529 - uses : actions/checkout@v2
1630 - name : Set up Python
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "animeworld" ,
8- version = "1.6.2 " ,
8+ version = "1.6.3 " ,
99 author = "MainKronos" ,
1010 description = "AnimeWorld UNOFFICIAL API" ,
1111 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments