Uses https://github.com/nschloe/action-cached-lfs-checkout where we're using git-lfs. This is a wrapper around `actions/checkout@v3` which uses `actions/cache@v3` to cache the files on LFS to avoid downloading them every time and spare LFS bandwidth.
14 lines
226 B
YAML
14 lines
226 B
YAML
name: Validate Git LFS
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Validate
|
|
steps:
|
|
- uses: nschloe/action-cached-lfs-checkout@v1.2.1
|
|
|
|
- run: |
|
|
./tools/git/validate_lfs.sh
|