Skip to content

fix annoying spacing #65

fix annoying spacing

fix annoying spacing #65

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest responses
pip install .
- name: Run tests
env:
JITO_TESTNET_URL: https://dallas.testnet.block-engine.jito.wtf/api/v1
run: |
python3 example.py
pytest ./tests/test_jito_json_rpc_sdk.py