Skip to content

Add debugging print statements for tensor shapes in MulticoreBPFLayer #103

Add debugging print statements for tensor shapes in MulticoreBPFLayer

Add debugging print statements for tensor shapes in MulticoreBPFLayer #103

Workflow file for this run

name: Python application
on:
push:
branches: [ main, devin/deepbrain-experiment-1/11206 ]
pull_request:
branches: [ main, devin/deepbrain-experiment-1/11206 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libdbus-1-dev
sudo apt-get install -y gobject-introspection
sudo apt-get install -y libgirepository1.0-dev
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run tests
run: |
pip install pytest
pytest