Skip to content

Add ONNXModifier for optimising the ONNX model before converting for RVC4 execution #123

Add ONNXModifier for optimising the ONNX model before converting for RVC4 execution

Add ONNXModifier for optimising the ONNX model before converting for RVC4 execution #123

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- dev
- main
paths:
- 'tests/test_utils/**'
- 'modelconverter/**'
- '.github/workflows/unittests.yaml'
jobs:
utils-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: pip
- name: Install package
run: python -m pip install -e .[dev]
- name: Run Unit Tests
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_S3_ENDPOINT_URL: ${{ secrets.AWS_S3_ENDPOINT_URL }}
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
run: python -m pytest tests/test_utils