-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yvan Tortorella
committed
Feb 16, 2024
1 parent
4b74428
commit c658963
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 2022 ETH Zurich and University of Bologna. | ||
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: lint | ||
|
||
on: [ push, pull_request, workflow_dispatch ] | ||
|
||
jobs: | ||
|
||
lint-license: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Check license | ||
uses: pulp-platform/pulp-actions/lint-license@v2 | ||
with: | ||
license: | | ||
Copyright (\d{4}(-\d{4})?\s)?.* | ||
(Solderpad Hardware License, Version 0.51|Licensed under the Apache License, Version 2.0), see LICENSE for details. | ||
SPDX-License-Identifier: (SHL-0.51|Apache-2.0) | ||
# Exclude generated headers (no license checker support for optional lines) | ||
exclude_paths: | | ||
sw/utils/tinyprintf.h | ||
sw/inc/* | ||
*.md | ||
*.do | ||
*.lock | ||
LICENSE* | ||
lint-sv: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Run Verible | ||
uses: chipsalliance/verible-linter-action@main | ||
with: | ||
paths: hw | ||
extra_args: "--waiver_files .github/verible.waiver" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
fail_on_error: true | ||
reviewdog_reporter: github-check | ||
|
||
# lint-cxx: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - | ||
# name: Checkout | ||
# uses: actions/checkout@v3 | ||
# - | ||
# name: Run Clang-format | ||
# uses: DoozyX/[email protected] | ||
# with: | ||
# extensions: 'c,h,cpp' | ||
# clangFormatVersion: 14 | ||
# style: > | ||
# { | ||
# IndentWidth: 4, | ||
# ColumnLimit: 100, | ||
# AlignEscapedNewlines: DontAlign, | ||
# SortIncludes: false, | ||
# AllowShortFunctionsOnASingleLine: None, | ||
# AllowShortIfStatementsOnASingleLine: true, | ||
# AllowShortLoopsOnASingleLine: true | ||
# } | ||
# exclude: | |