Skip to content

Commit

Permalink
ci: Get rid of reviewdog
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed May 30, 2024
1 parent fa42a30 commit 9038dd4
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ jobs:
pip install .
- name: Install bender
uses: pulp-platform/pulp-actions/bender-install@v2
- name: Install Verible
uses: chipsalliance/verible-actions-common/install-verible@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Make clean sources
run: |
make clean pkg-sources FLOOGEN_ARGS="--no-format"
make clean pkg-sources
- name: Format with verible
uses: chipsalliance/verible-formatter-action@main
with:
files:
./hw/**/*.sv
github_token: ${{ secrets.GITHUB_TOKEN }}
run: |
verible-verilog-format --inplace hw/**/*.sv
- name: Check clean
run: |
git status && test -z "$(git status --porcelain)"
Expand All @@ -57,15 +58,16 @@ jobs:
pip install .
- name: Install bender
uses: pulp-platform/pulp-actions/bender-install@v2
- name: Install Verible
uses: chipsalliance/verible-actions-common/install-verible@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Make clean sources
run: |
make -B pkg-sources FLOOGEN_ARGS="--no-format"
make -B pkg-sources
- name: Format with verible
uses: chipsalliance/verible-formatter-action@main
with:
files:
./hw/**/*.sv
github_token: ${{ secrets.GITHUB_TOKEN }}
run: |
verible-verilog-format --inplace hw/**/*.sv
- name: Check clean
run: |
git status && test -z "$(git status --porcelain)"
Expand Down

0 comments on commit 9038dd4

Please sign in to comment.