Skip to content

Test RPC and LCD endpoints #4

Test RPC and LCD endpoints

Test RPC and LCD endpoints #4

name: Test RPC and LCD endpoints
on:
schedule:
- cron: '0 0 * * *' # Runs daily at 00:00 UTC
workflow_dispatch:
jobs:
test-endpoints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r .github/workflows/tests/requirements.txt
- name: Run tests
run: |
pytest --no-header --tb=no -n 64 .github/workflows/tests