Hi,
I would like to kwow if there is a way to know if files are not up to date on my github repo (with the .dvc files) compare to dvc storage without doing a dvc pull and dvc repro. In other words, how can I check if nobody forget to do a dvc push before git push.
I can’t use dvc pull to check that because the check is doing in a github action and files are too large to be pull on it. And I don’t want to depends on some hooks because it implies to be sure that everybody install it.
I have the intuition that it coulb be possible to check the md5 stock in .dvc files are the same that in remote without pulling them but I don’t find the solution.
Thank you in advance for your help