github.com/shippio/gqlgen@v0.0.0-20220912092219-633ea699ef07/.github/workflows/check-generate (about)

     1  #!/bin/bash
     2  
     3  set -euo pipefail
     4  
     5  go generate ./...
     6  cd _examples && go generate ./...
     7  if [[ $(git --no-pager diff) ]] ; then
     8      echo "you need to run "go generate ./..." and commit the changes"
     9      git --no-pager diff
    10      exit 1
    11  fi