SM-1339: Create new service in DIMO Node responsible for CH and S3 insert #3
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: golangci-lint | |
on: | |
pull_request: | |
branches: ["**"] | |
jobs: | |
golangci: | |
runs-on: "ubuntu-24.04" | |
name: lint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: install golangci-lint | |
run: make tools-golangci-lint | |
- name: tidy | |
run: go mod tidy | |
- name: build | |
run: go build | |
- name: Run golangci-lint | |
run: make lint |