Resolve warnings when compiling with GCC 12 and GCC 13.1 #232
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
# .github/workflows/fixme-check.yml -- check for FIXME task labels | |
# | |
# This is a GitHub CI workflow | |
# <https://docs.github.com/en/actions/automating-builds-and-tests/about-continuous-integration> | |
# to check for FIXME and similar task labels left unresolved in the | |
# MPS source tree. | |
name: FIXME check | |
on: | |
# Run as part of CI checks on branch push and on merged pull request. | |
- push | |
- pull_request | |
- workflow_dispatch # allow manual triggering | |
jobs: | |
check-fixme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: tool/check-fixme |