popcount_tb: Fix the widths of popcount_w5 and popcount_w981 #337
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: lint | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
################ | |
# Verible Lint # | |
################ | |
verilog: | |
name: Verilog Sources | |
# This job runs on Linux (fixed ubuntu version) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: chipsalliance/verible-linter-action@main | |
with: | |
paths: | | |
./src | |
exclude_paths: | | |
./src/deprecated | |
extra_args: "--waiver_files lint/common_cells.style.waiver --rules=-interface-name-style --lint_fatal" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reviewdog_reporter: github-check |