-
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 1.08 KB
/
search_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Test search
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py install
- name: search anime test
run: python test/tests.py -search_anime
- name: search manga test
run: python test/tests.py -search_manga
- name: search characters test
run: python test/tests.py -search_characters
- name: search clubs test
run: python test/tests.py -search_clubs
- name: search people test
run: python test/tests.py -search_people
- name: search producers test
run: python test/tests.py -search_producers
- name: search magazines test
run: python test/tests.py -search_magazines
- name: search users test
run: python test/tests.py -search_users