feat(misc): automation code testing with docs file #5
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: CI-tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.10.4 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.4 | |
- name: Install copy paste mechanism | |
run: sudo apt-get install xsel | |
- name: Create virtual environment | |
run: python -m venv venv | |
- name: Activate virtual environment | |
run: source venv/bin/activate | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install uagents pyperclip pytest psutil tortoise-orm geopy black | |
- name: Run your tests | |
run: | | |
python -m pytest -s agents_tests/test_fetch_agents.py |