fix(workflows/syncer): check that no engine is running before registering new one #9915
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: 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@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: Validate go.mod | |
uses: smartcontractkit/.github/apps/go-mod-validator@08c2c2bae1ddfba0cd0bb010d9abe9d351edc548 #v0.5.0 |