name: Go Mod on: [pull_request] jobs: go-mod: runs-on: ubuntu-latest defaults: run: working-directory: ${{ github.workspace }}/src steps: - name: Install Go uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f with: go-version: 1.18 - name: Checkout code uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Check for unused dependencies run: | go mod tidy if [ "$(git status | grep -c "nothing to commit, working tree clean")" == "1" ]; then echo "Nothing to tidy" exit 0 fi echo "Go mod tidy is needed" exit 1