Skip to content

fix add safe participants when accept incomes #205

fix add safe participants when accept incomes

fix add safe participants when accept incomes #205

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ master, develop ]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["${{ vars.PYTHON_VERSION }}"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip --no-cache-dir
pip install flake8 ruff isort --no-cache-dir
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run flake8
run: |
flake8 backend --count --exit-zero --max-complexity=10 --max-line-length=79 --config=setup.cfg
- name: Run ruff
run: |
python -m ruff check -n .
- name: Run isort
run: |
isort -c .