Add to check helpers into the regress script #223
This file contains hidden or 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: 'lint' | |
on: | |
push: | |
paths: | |
- 'examples/**' | |
- 'pyfpga/**' | |
- 'tests/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: pip install pycodestyle pylint | |
- name: Run linting | |
run: make lint |