add rate limiter to get_amount_out calls #31
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: Continous Integration | |
on: | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE' | |
- 'integration_tests/**' | |
- 'tutorials/**' | |
- 'README.md' | |
- 'LICENSE' | |
- '.gitignore' | |
- 'coverage.json' | |
- 'media' | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE' | |
- 'integration_tests/**' | |
- 'tutorials/**' | |
- 'README.md' | |
- 'LICENSE' | |
- '.gitignore' | |
- 'coverage.json' | |
- 'media' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["all"] | |
environment: | |
name: CI | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up supported Python versions | |
uses: actions/setup-python@v5 | |
with: | |
python-version: | | |
3.8 | |
3.9 | |
3.10 | |
3.11 | |
3.12 | |
3.13 | |
- name: Install tox and any other packages | |
run: | | |
pip install -U pip | |
pip install tox | |
- name: Run tox | |
run: | | |
export RPC_ENDPOINT=${{ secrets.RPC_ENDPOINT }} | |
python --version | |
pip freeze | |
tox |