From ab4dffb53ce2bb80a37efc000328c6d596296b18 Mon Sep 17 00:00:00 2001 From: Ashwin Naren Date: Fri, 4 Apr 2025 11:37:40 -0700 Subject: [PATCH] this should just fail if warnings happen because of RUSTFLAGS --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b728c81bc..afd3201e2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -326,7 +326,7 @@ jobs: - name: install ruff run: python -m pip install ruff==0.0.291 # astral-sh/ruff#7778 - name: Ensure docs generate no warnings - run: cargo doc -- -Dwarnings + run: cargo doc - name: run python lint run: ruff extra_tests wasm examples --exclude='./.*',./Lib,./vm/Lib,./benches/ --select=E9,F63,F7,F82 --show-source - name: install prettier