Fix: allow to_node_storage & try_get_in_node_storage on null nodes #622
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
name: Run unit tests and examples | |
on: [ 'pull_request' ] | |
jobs: | |
tests_and_example_matrix: | |
strategy: | |
matrix: | |
cppenv: | |
- os: ubuntu-22.04 | |
compiler: gcc-13 | |
- os: ubuntu-22.04 | |
compiler: clang-16 | |
- os: ubuntu-22.04 | |
compiler: clang-17 | |
fail-fast: false | |
name: ${{ matrix.cppenv.compiler }}, ${{ matrix.cppenv.os }} | |
uses: ./.github/workflows/reusable_run_test_and_examples.yml | |
with: | |
os: ${{ matrix.cppenv.os }} | |
compiler: ${{ matrix.cppenv.compiler }} | |
cmake-version: 3.24.0 | |
with-coverage: false | |
with-sanitizer: ${{ matrix.cppenv.compiler == 'clang-17' }} | |
with-Werror: ${{ matrix.cppenv.compiler == 'clang-17' || matrix.cppenv.compiler == 'gcc-13' }} | |
with-AVX: ${{ matrix.cppenv.compiler == 'clang-17' }} |