oh-my-posh/.github/workflows/gomod.yml

27 lines
676 B
YAML
Raw Normal View History

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-09-13 23:25:14 -07:00
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
2020-12-25 03:23:20 -08:00
with:
2022-03-20 23:17:33 -07:00
go-version: 1.18
2020-12-25 03:23:20 -08:00
- name: Checkout code
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
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