diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 305dac2..f2e79fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,3 +65,17 @@ jobs: - name: test run: | make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test + macos-asan: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: test + run: | + make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_ASAN=y test + macos-ubsan: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: test + run: | + make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_UBSAN=y test