From e80383e999efad9a17ace31e1b18c7391393dcd5 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Thu, 8 Feb 2024 19:43:22 +0100 Subject: [PATCH] add vibe check --- .github/workflows/rust.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 492fe60..807b6c4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -170,6 +170,17 @@ jobs: # Note: needs cargo rustdoc, not cargo doc. run: cargo rustdoc --all-features -- -D warnings + vibe_check: + name: Vibe check + runs-on: ubuntu-latest + steps: + - name: Vibe check + run: | + if [ $((RANDOM % 3)) -eq 0 ]; then + echo "Failed the vibe check!" + exit 1 + fi + sanitizers: name: Test sanitizer ${{ matrix.sanitizer }} runs-on: ubuntu-latest