Skip to content

Commit

Permalink
ci: add Verible to GitHub Actions (#1669)
Browse files Browse the repository at this point in the history
  • Loading branch information
cathales authored Dec 4, 2023
1 parent c51819d commit c508a3d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/verible.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2023 Thales DIS
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0

name: Verible
on:
pull_request_target:

jobs:
format:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
pull-requests: write
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 }}
files: 'core/**/*.{v,sv}'

0 comments on commit c508a3d

Please sign in to comment.