ci: checkout without LFS
Some checks failed
/ check_lfs (push) Successful in 8s
/ check_lfs (pull_request) Successful in 9s
/ lint_fmt (pull_request) Failing after 51s
/ lint_clippy (pull_request) Failing after 48s
/ build (pull_request) Has been skipped

This commit is contained in:
silver 2025-07-21 01:17:18 +01:00
parent d82fcf4d37
commit 65dd9a9d1a
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -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