Skip to content

chore: fix axi dependency and disable PD CI #861

chore: fix axi dependency and disable PD CI

chore: fix axi dependency and disable PD CI #861

Workflow file for this run

# Copyright 2025 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
# Author: Tim Fischer <fischeti@iis.ee.ethz.ch>
name: lint
on:
pull_request:
push:
branches:
- main
jobs:
################
# Verible Lint #
################
verible-lint:
name: Lint SV sources
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chipsalliance/verible-linter-action@main
with:
paths: |
./hw
./target/sim/src
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_on_error: true
reviewdog_reporter: github-check
##################
# Verible Format #
##################
lint-sv-format:
name: Format SV sources
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: chipsalliance/verible-formatter-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
parameters:
--flagfile .verilog_format
fail_on_formatting_suggestions: true
#################
# Check License #
#################
lint-license:
name: Lint License Headers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v5