From a2863513a3ab26d55f175b82ade45fb509e09e50 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 14 Oct 2024 17:25:38 -0700 Subject: [PATCH] Enforce that third-party/bazel is synchronized with third-party/Cargo.lock --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc6446f30..824162b13 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,6 +111,11 @@ jobs: - name: Check MODULE.bazel.lock up to date run: git diff --exit-code if: matrix.os == 'ubuntu' || matrix.os == 'macos' + - run: bazel run //third-party:vendor + if: matrix.os == 'ubuntu' || matrix.os == 'macos' + - name: Check third-party/bazel up to date + run: git diff --exit-code + if: matrix.os == 'ubuntu' || matrix.os == 'macos' minimal: name: Minimal versions