Skip to content

fix onnx import issue and bump to 0.4.3 #27

fix onnx import issue and bump to 0.4.3

fix onnx import issue and bump to 0.4.3 #27

Workflow file for this run

name: Run tests
on:
pull_request:
push:
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install -e .[dev]
- name: Check styling
run: black . --check
- name: Linting
run: ruff check . --line-length 120
# - name: Run pytest
# run: pytest
# - name: Build Docs
# run: mkdocs build