Add GitHub Action to check for large files without git lfs #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow checks for large files that are not tracked with git lfs | |
name: Check for git lfs | |
on: [push, pull_request] | |
jobs: | |
check_git_lfs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for large files without git lfs | |
uses: ppremk/[email protected] | |
with: | |
filesizelimit: 1MB |