Skip to content

fix: export to onnx ConstantOfShape in case of bool value attribute #252

fix: export to onnx ConstantOfShape in case of bool value attribute

fix: export to onnx ConstantOfShape in case of bool value attribute #252

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint-python:
name: Pylint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
python -m pip install -e .
- name: Analysing the code with pylint
run: |
pylint --rcfile .pylintrc --output-format=colorized $(git ls-files '*.py')
lint-python-format:
name: Python format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.9"
- uses: psf/black@stable
with:
options: "--check --diff"
- uses: isort/isort-action@master
with:
configuration:
--check
--diff