2020-12-25 03:23:20 -08:00
|
|
|
name: Go Mod
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
go-mod:
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-25 11:02:25 -08:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ${{ github.workspace }}/src
|
2020-12-25 03:23:20 -08:00
|
|
|
steps:
|
|
|
|
- name: Install Go
|
2024-07-10 17:42:14 -07:00
|
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
|
2020-12-25 03:23:20 -08:00
|
|
|
with:
|
2023-08-29 11:25:51 -07:00
|
|
|
go-version: 1.21
|
2023-07-10 04:40:31 -07:00
|
|
|
cache-dependency-path: src/go.sum
|
2020-12-25 03:23:20 -08:00
|
|
|
- name: Checkout code
|
2024-09-25 17:22:30 -07:00
|
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
|
2020-12-25 03:23:20 -08:00
|
|
|
- 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
|