Skip to content

[CHA-242] Adding new property to channel config #398

[CHA-242] Adding new property to channel config

[CHA-242] Adding new property to channel config #398

Workflow file for this run

name: Lint
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
lint:
name: 👮 Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commit message linter
uses: wagoid/commitlint-github-action@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.18"
- name: Tidy
run: go mod tidy -v && git diff --no-patch --exit-code || { git status; echo 'Unchecked diff, did you forget go mod tidy again?' ; false ; };