feat: add symlink support #167
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Mod | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
jobs: | |
go-mod: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }}/src | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: 1.22.4 | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- 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 |