Skip to content

update version and fix example code #123

update version and fix example code

update version and fix example code #123

Workflow file for this run

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