[SCRAPER]: Initial implementation #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Jac_vision Tests | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- jaseci_ai_kit/jac_vision/** | |
pull_request: | |
branches: [ main ] | |
paths: | |
- jaseci_ai_kit/jac_vision/** | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set swap space | |
uses: pierotofy/set-swap-space@master | |
with: | |
swap-size-gb: 5 | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libsndfile1 ffmpeg | |
sudo apt-get install -y espeak-ng | |
python -m pip install --upgrade pip | |
- name: Install jaseci_core | |
run: | | |
pip3 install jaseci_core/ | |
- name: Install jac_vision | |
run: | | |
cd jaseci_ai_kit/jac_vision | |
pip install -e .[all] | |
- name: Verify jac_vision installation | |
run: | | |
python -c "import jac_vision" | |
- name: Run tests | |
run: | | |
cd jaseci_ai_kit/jac_vision | |
source ../test.sh |