Skip to content

Add pylint github action file. #2

Add pylint github action file.

Add pylint github action file. #2

name: Pretrained Model Test (Core)
on:
push:
branches:
- main
pull_request:
jobs:
setup:
strategy:
matrix:
tf_version: ['2.10', '2.13']
python_version: ['3.8', '3.10']
opset_version: ['17', '16', '14']
ort_version: ['1.16.3']
runs-on: ubuntu-latest
steps:
- name: Set up Python (${{ matrix.python_version }})
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Checkout code (${{ github.event.inputs.tf_version }})
uses: actions/checkout@v4
- name: Check folder
run: |
ls ./tests/
- name: Install dependencies (tf ${{ matrix.tf_version }})
shell: bash
run: |
chmod +x ./tests/setup_test_env.sh
./tests/setup_test_env.sh ${{ matrix.tf_version }} ${{ matrix.ort_version }}
- name: Fix Paths (Windows only)
if: runner.os == 'Windows'
run: |
$site_dir = python -c "import site; print(site.getsitepackages()[1])"
echo "##vso[task.prependpath]$site_dir\numpy\.libs"
$base_dir = python -c "import site; print(site.getsitepackages()[0])"
echo "##vso[task.prependpath]$base_dir/Library/bin"
- name: Run pretrained_model_test
run: |
set -x
status=0
# TODO: fix unity model path
# python tests/run_pretrained_models.py --backend $CI_ONNX_BACKEND --opset $CI_ONNX_OPSET --config tests/unity.yaml || status=$?
python tests/run_pretrained_models.py --backend onnxruntime --opset ${{ matrix.opset_version }} --skip_tf_tests False --skip_tflite_tests False --skip_tfjs_tests True --config tests/run_pretrained_models.yaml || status=$?
exit $status