From 7f684ae099600481950df0c708a2dc3cec1499fb Mon Sep 17 00:00:00 2001 From: Dov Reshef Date: Sun, 24 Sep 2023 01:24:37 +0300 Subject: [PATCH] Rendering tests: use git lfs in github actions so the tests will succeed --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 131f3fa..5c6a17f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,6 +19,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + lfs: true + - name: Checkout LFS objects + run: git lfs checkout - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}