SsstrictV 100% Coverage, Passing Imperas and Whisper #2105
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
| # jcarlin@hmc.edu | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: autofix.ci | |
| on: | |
| pull_request: | |
| # Only run on the latest commit if a PR is updated | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| name: Update generated tests and coverpoints | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Set up mise | |
| uses: jdx/mise-action@e6a8b3978addb5a52f2b4cd9d91eafa7f0ab959d # v4 | |
| - name: Regenerate tests and coverpoints | |
| run: make clean-tests tests | |
| - name: Apply fixes | |
| uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 |