Skip to content

Commit

Permalink
workflows:feature - add go mod tidy check (#904)
Browse files Browse the repository at this point in the history
Now runs a check to see if go.sum file diffs from current version from one generated by go mod tidy command

Signed-off-by: Ian Cardoso <ian.cardoso@zup.com.br>
  • Loading branch information
iancardosozup authored Dec 28, 2021
1 parent 68a1463 commit 0cc95bc
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/go-tidy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2021 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Go Tidy

on:
push:
branches: [ main ]
pull_request:
jobs:
go-mod-tidy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Golang
uses: actions/setup-go@v2
with:
go-version: 1.17
## Run go mod tidy and then check if there was a diff. If so, fail the check.
- name: Check go mod tidy diff
run: if [ $(go mod tidy && git diff | wc -l) -gt 0 ]; then git diff && exit 1; fi

0 comments on commit 0cc95bc

Please sign in to comment.