Import more logging that uses cmp to find diffs between old and new m… #1273
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: chaincli CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
golangci: | |
if: ${{ github.event_name == 'pull_request' || github.event_name == 'schedule' }} | |
name: chaincli-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Golang Lint | |
uses: ./.github/actions/golangci-lint | |
with: | |
name: chaincli-lint | |
go-directory: core/scripts/chaincli | |
go-version-file: core/scripts/go.mod | |
go-module-file: core/scripts/go.sum | |
gc-basic-auth: ${{ secrets.GRAFANA_CLOUD_BASIC_AUTH }} | |
gc-host: ${{ secrets.GRAFANA_CLOUD_HOST }} |