Ver código fonte

workflow: try to enable C++23

skypjack 1 mês atrás
pai
commit
cf7be25ec9
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1 1
      .github/workflows/build.yml
  2. 1 1
      .github/workflows/sanitizer.yml

+ 1 - 1
.github/workflows/build.yml

@@ -85,7 +85,7 @@ jobs:
       matrix:
         os: [windows-latest, macOS-latest, ubuntu-latest]
         id_type: ["std::uint32_t", "std::uint64_t"]
-        cxx_std: [cxx_std_20]
+        cxx_std: [cxx_std_20, cxx_std_23]
 
     timeout-minutes: 15
     runs-on: ${{ matrix.os }}

+ 1 - 1
.github/workflows/sanitizer.yml

@@ -11,7 +11,7 @@ jobs:
       matrix:
         compiler: [clang++]
         id_type: ["std::uint32_t", "std::uint64_t"]
-        cxx_std: [cxx_std_20]
+        cxx_std: [cxx_std_20, cxx_std_23]
 
     runs-on: ubuntu-latest