From f523d912af890bca7c140ced88ad03e0e90a1fab Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 25 Sep 2025 23:01:05 +0000 Subject: [PATCH] ci: install rustfmt before checking provider database Apparently it is not installed by default anymore. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5e89f5af..d15475615 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,8 @@ jobs: with: show-progress: false persist-credentials: false + - name: Install rustfmt + run: rustup component add --toolchain stable-x86_64-unknown-linux-gnu rustfmt - name: Check provider database run: scripts/update-provider-database.sh