[CRE-1083] add option to not cleanup docker containers on error #17008
Workflow file for this run
This file contains hidden or 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: Validate Go Mod Files | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
go-mod-validation: | |
name: Validate go.mod dependencies | |
runs-on: ubuntu-latest | |
# Skip on merge group events | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate go.mod | |
uses: smartcontractkit/.github/apps/go-mod-validator@go-mod-validator/v1 |