Skip to content

Commit 471bb93

Browse files
committed
1.6.3
1 parent 4fa97b8 commit 471bb93

3 files changed

Lines changed: 16 additions & 23 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,25 @@ name: Publish to PyPI
66
on:
77
release:
88
types: [created]
9+
workflow_dispatch:
910

1011
jobs:
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

.github/workflows/python-test.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.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,

0 commit comments

Comments
 (0)