From 65dd9a9d1a15e27f76fa432455cfadc2353859d0 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Mon, 21 Jul 2025 01:17:18 +0100 Subject: [PATCH] ci: checkout without LFS --- .forgejo/workflows/on_pr.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.forgejo/workflows/on_pr.yaml b/.forgejo/workflows/on_pr.yaml index 62a5da0..7eb7a7b 100644 --- a/.forgejo/workflows/on_pr.yaml +++ b/.forgejo/workflows/on_pr.yaml @@ -15,6 +15,9 @@ jobs: steps: # get the repo first - uses: https://code.forgejo.org/actions/checkout@v4 + with: + # We don't actually care about LFS file contents, just their integrity. + lfs: false - run: nix build .#fmt --verbose # clippy is incredibly useful for making yer code better @@ -26,6 +29,9 @@ jobs: steps: # get the repo first - uses: https://code.forgejo.org/actions/checkout@v4 + with: + # We don't actually care about LFS file contents, just their integrity. + lfs: false - run: nix build .#clippy --verbose build: @@ -35,5 +41,8 @@ jobs: steps: # get the repo first - uses: https://code.forgejo.org/actions/checkout@v4 + with: + # We don't actually care about LFS file contents, just their integrity. + lfs: false - name: "Build it locally" run: nix build --verbose \ No newline at end of file