Add dirty version check in CI #268

Merged
alexvanin merged 1 commit from alexvanin/frostfs-s3-gw:fix/ci-dirty-check into master 2023-11-28 10:42:52 +00:00

View file

@ -18,3 +18,6 @@ jobs:
- name: Build binary - name: Build binary
run: make run: make
- name: Check dirty suffix
run: if [[ $(make version) == *"dirty"* ]]; then echo "Version has dirty suffix" && exit 1; fi