fix: copy powered netlist when building tt_top #6
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: Python Lint | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Check code with pre-commit | |
run: pre-commit run --all-files |