Make gen_finn_dt_tensor consider the numpy type for INT and FIXED types #350
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run pre-commit | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main, dev ] | |
push: | |
branches: [ main, dev ] | |
jobs: | |
lint: | |
name: Lint PR or Push to DEV | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run Lint | |
uses: pre-commit/[email protected] |