mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-18 22:51:10 -08:00
7b2e2ff5d2
relates to #3560
27 lines
678 B
YAML
27 lines
678 B
YAML
name: Go Mod
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
go-mod:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ github.workspace }}/src
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
|
|
with:
|
|
go-version: 1.20.2
|
|
- name: Checkout code
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
- 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
|