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
|
2022-12-13 21:17:49 -08:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
|
2020-12-25 03:23:20 -08:00
|
|
|
with:
|
2023-03-04 08:13:28 -08:00
|
|
|
go-version: 1.20.1
|
2020-12-25 03:23:20 -08:00
|
|
|
- name: Checkout code
|
2023-01-05 16:26:15 -08:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
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
|