mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
25 lines
629 B
YAML
25 lines
629 B
YAML
name: Go Mod
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
go-mod:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ github.workspace }}/src
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
|
- name: Install Go 🗳
|
|
uses: ./.github/workflows/composite/bootstrap-go
|
|
- 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
|