Skip to content

[Multi-Chain] Pass config explicitly everywhere #1687

[Multi-Chain] Pass config explicitly everywhere

[Multi-Chain] Pass config explicitly everywhere #1687

Workflow file for this run

name: pull request
on:
pull_request:
push:
branches: [ main ]
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.12
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install Requirements
run:
pip install -r requirements.txt
- name: Pylint
run:
pylint src/
- name: Black
run:
black --check ./
- name: Type Check (mypy)
run: mypy src --strict
- name: Unit Tests
run:
python -m pytest tests/unit