Guard against missing math_errhandling macro #61
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
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| # Copyright © 2025 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH | |
| # Matthias Kretz <[email protected]> | |
| name: Clang | |
| on: | |
| push: | |
| branches: [ main, rewrite ] | |
| pull_request: | |
| jobs: | |
| clang: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [21, 22] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/mattkretz/cplusplus-ci/clang${{ matrix.version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run test suite | |
| env: | |
| CXX: clang++ | |
| run: make -j2 ci |