chore(deps): bump the github-actions group with 2 updates #100
Workflow file for this run
This file contains hidden or 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
| # Copyright 2026 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: slang | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ######### | |
| # Slang # | |
| ######### | |
| slang: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| DUT: [axi_mesh, nw_mesh] | |
| ROUTE_ALGO: [xy, src, id] | |
| steps: | |
| - uses: actions/checkout@v7.0.0 | |
| - name: Install bender | |
| uses: pulp-platform/pulp-actions/bender-install@v2.5.1 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.3.0 | |
| - name: Generate RTL | |
| run: uv run floogen rtl -c floogen/examples/${{ matrix.DUT }}_${{ matrix.ROUTE_ALGO }}.yml -o generated --no-format | |
| - name: Generate bender file list | |
| # TODO: Remove -e fpnew once fpnew_top.sv is fixed upstream. | |
| run: bender script flist-plus -t floo_synth -t ${{ matrix.DUT }} -e fpnew > sources.f | |
| - name: Slang lint | |
| uses: pulp-platform/pulp-actions/slang@v2.5.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| reviewdog-name: ${{ matrix.DUT }}_${{ matrix.ROUTE_ALGO }}_noc_check | |
| slang-flags: >- | |
| -f sources.f --top floo_${{ matrix.DUT }}_noc | |
| --ignore-unknown-modules | |
| -Wno-finish-num | |
| --suppress-warnings .bender |