Axis Exp ADC: Add base IP #14
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 HDL | |
on: | |
push: | |
pull_request: | |
# Avoid multiple tests running on the same reference | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chipsalliance/verible-linter-action@main | |
with: | |
paths: | |
./library | |
./projects | |
exclude_paths: | |
./library/analog_devices_hdl | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |