add CI job, which verifies that the README.md contains the generated compiler support table #3
Workflow file for this run
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
# Copyright 2023 Bernhard Manfred Gruber | |
# SPDX-License-Identifier: MPL-2.0 | |
name: Check compiler support table in README.md | |
on: [push, pull_request] | |
jobs: | |
check-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: verify that the compiler support table is up to date | |
run: | | |
./script/readme_generator/generate_supported_compilers.py --verify |