Skip to content

ONNX and JSON support #232

ONNX and JSON support

ONNX and JSON support #232

Workflow file for this run

name: Flake8 and Black
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
- name: Analysing the code with flake8
run: |
flake8 ./sam
- name: checking for black compatibility
run: |
black --check --verbose ./sam