Finalize sanitizer list
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 490b3c8..c7005f7 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -19,14 +19,14 @@
   CTEST_PARALLEL_LEVEL: 2
 
 jobs:
-  clang-sanitiers:
+  sanitizers:
     if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
     runs-on: ubuntu-22.04
     
     strategy:
       fail-fast: false
       matrix:
-        sanitizers: ["address", "thread", "memory", "undefined", "dataflow", "cfi", "kcfi", "safe-stack", "integer"]
+        sanitizers: ["address", "thread", "memory", "undefined", "integer", "implicit-conversion", "nullability", "dataflow", "cfi -flto", "safe-stack"]
 
     steps:
       - uses: actions/checkout@v2