Skip to content

Add order_id to LoanCreated, LoanReplaced and LoanReplacedByLender events #1

Add order_id to LoanCreated, LoanReplaced and LoanReplacedByLender events

Add order_id to LoanCreated, LoanReplaced and LoanReplacedByLender events #1

name: Integration tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
id-token: write
env:
BOA_FORK_RPC_URL: "https://eth-mainnet.g.alchemy.com/v2/${{ secrets.ALCHEMY_KEY }}"
BOA_FORK_NO_CACHE: "TRUE"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Run project integration tests
run: |
pytest tests/integration --durations=0 --gas-profile