Skip to content

Commit

Permalink
basic check on some version
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr0id committed Jul 23, 2024
1 parent 1bb6f52 commit d87add1
Showing 1 changed file with 6 additions and 31 deletions.
37 changes: 6 additions & 31 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,23 @@ 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: Install pyenv
run: |
curl https://pyenv.run | bash
echo 'PYENV_ROOT="$HOME/.pyenv"' >> $GITHUB_ENV
echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> $GITHUB_ENV
echo 'eval "$(pyenv init -)"' >> $GITHUB_ENV
echo 'eval "$(pyenv virtualenv-init -)"' >> $GITHUB_ENV
echo $GITHUB_ENV
- name: Set up Python ${{ matrix.python-version }} with pyenv
env:
PYENV_ROOT: ${{ env.PYENV_ROOT }}
PATH: ${{ env.PATH }}
run: |
pyenv install ${{ matrix.python-version }} -s
pyenv virtualenv ${{ matrix.python-version }} venv
echo "venv" > .python-version
pyenv activate venv
echo "PYENV_VERSION=venv" >> $GITHUB_ENV
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install dependencies
env:
PYENV_ROOT: ${{ env.PYENV_ROOT }}
PATH: ${{ env.PATH }}
PYENV_VERSION: venv
run: |
python -m pip install --upgrade pip
pip install pytest responses
pip install .
- name: Run tests
env:
PYENV_ROOT: ${{ env.PYENV_ROOT }}
PATH: ${{ env.PATH }}
PYENV_VERSION: venv
run: |
JITO_TESTNET_URL=https://dallas.testnet.block-engine.jito.wtf/api/v1 pytest ./tests/test_jito_json_rpc_sdk.py
JITO_TESTNET_URL: https://dallas.testnet.block-engine.jito.wtf/api/v1
run: pytest ./tests/test_jito_json_rpc_sdk.py

0 comments on commit d87add1

Please sign in to comment.