ci:updating workflow #12
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: Dependency Management | |
on: | |
push: | |
branches: | |
- prod | |
pull_request: | |
branches: | |
- prod | |
jobs: | |
tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22' | |
- name: Ensure go.mod and go.sum are tidy | |
run: go mod tidy -v | |