* Cherry-pick U22 adoption in github actions * More fixes for shellcheck * More fixes for shellcheck * Update .github/workflows/py_checks.yml Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
18 lines
330 B
YAML
18 lines
330 B
YAML
name: Files Size
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Check_Files_Size:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: git ls-tree
|
|
run: |
|
|
git ls-tree -r -t -l --full-name HEAD | sort -n -r -k 4
|
|
|
|
- name: git lfs ls-files
|
|
run: |
|
|
git lfs ls-files --size
|
|
|