mirror of https://github.com/microsoft/autogen.git
Add Git LFS check action, fix broken lfs files (#2436)
* Add images to lfs. * Add github action for lfs check.
This commit is contained in:
parent
6636689cb9
commit
9f281dad75
|
@ -0,0 +1,15 @@
|
|||
name: "Git LFS Check"
|
||||
|
||||
on: pull_request
|
||||
permissions: {}
|
||||
jobs:
|
||||
lfs-check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- name: Check Git LFS files for consistency
|
||||
run: |
|
||||
git lfs fsck
|
Binary file not shown.
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 131 B |
Binary file not shown.
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 130 B |
Loading…
Reference in New Issue