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
|
2023-05-15 18:02:47 -07:00
|
|
|
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
|
2020-12-25 03:23:20 -08:00
|
|
|
with:
|
2023-03-12 05:39:39 -07:00
|
|
|
go-version: 1.20.2
|
2020-12-25 03:23:20 -08:00
|
|
|
- name: Checkout code
|
2023-04-13 21:41:46 -07:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
|
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
|