Skip to content

Pytorch quantizers changes #27

Pytorch quantizers changes

Pytorch quantizers changes #27

name: Python 3.9
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
COVERAGE_THRESHOlD: 80
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install tensorflow==2.12.*
pip install torch==1.13.*
- name: Run unittests
run: python -m unittest discover -s tests -v