Skip to content

feat: added trackers #64

feat: added trackers

feat: added trackers #64

Workflow file for this run

name: Unit Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m venv .env
source .env/bin/activate
pip install -r requirements.txt
- name: Test crawler and indexer
run: |
source .env/bin/activate
python3 -m phantom.main --num_threads 2 --urls "https://github.com/AnsahMohammad" "https://github.com/AnsahMohammad" --sleep 6
python3 -m nltk.downloader stopwords
python3 -m nltk.downloader punkt
python3 -m phantom.core.indexer
echo "Crawling completed"
- name: Unittests
run: |
pip install -r requirements.txt
python3 -m unittest discover -s tests
echo "Unit test done"