Skip to content

AUTOUPDATE

AUTOUPDATE #34

name: Verible_Verilog_Lint
on:
push:
branches: []
jobs:
Verible_Verilog_Lint:
runs-on: [make, verible]
steps:
- uses: actions/checkout@v4
- name: Lint
shell: bash
run: |
git submodule update --init --recursive --depth 1
make lint
- name: Fail if Lint Issue
shell: bash
run: |
[[ -s ___LINT_ERROR ]] && exit 1 || exit 0