Skip to content

Development

Development #6

Workflow file for this run

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
# Declare default permissions as read only.
permissions: read-all
name: Code Generation Check
jobs:
check-codegen:
strategy:
matrix:
target: [ mocks, protobuf ]
fail-fast: false # Don't cancel running checks because one fails
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- uses: jdx/mise-action@0c39a522dfbced3ed83924152c45804a71ce216f # v2.0.4
with:
experimental: true
- id: generate
run: mise run generate:${{ matrix.target }} --check
continue-on-error: true
- name: Comment PR - Failure
if: steps.generate.outcome == 'failure'
permissions:

Check failure on line 37 in .github/workflows/codegen_check.yaml

View workflow run for this annotation

GitHub Actions / Code Generation Check

Invalid workflow file

The workflow is not valid. .github/workflows/codegen_check.yaml (Line: 37, Col: 7): Unexpected value 'permissions' .github/workflows/codegen_check.yaml (Line: 48, Col: 7): Unexpected value 'permissions'
pull-requests: write
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
with:
comment_tag: 'code_gen_${{ matrix.target }}'
mode: recreate
message: |
Generating the ${{ matrix.target }} code failed. This could be an indicator that the code generation is not
up to date. Please review the failed action before deciding to merge the PR.
- name: Comment PR - Success
if: steps.generate.outcome != 'failure'
permissions:
pull-requests: write
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
with:
comment_tag: 'code_gen_${{ matrix.target }}'
mode: recreate
message: |
It appears that the ${{ matrix.target }} code generation is up to date.