This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
Store txConflicting reason correctly and rename ConflictDAG to SpendDAG #2392
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: GolangCIlint | |
on: | |
pull_request: | |
paths-ignore: | |
- 'documentation/**' | |
- 'scripts/**' | |
- 'tools/**' | |
jobs: | |
golangci-lint: | |
name: GolangCI-Lint | |
runs-on: self-hosted | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Checkout custom linter | |
uses: actions/checkout@v3 | |
with: | |
repository: karimodm/typegroupingcheck | |
path: typegroupingcheck | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: './typegroupingcheck/go.mod' | |
- name: Build custom linter | |
working-directory: ./typegroupingcheck | |
run: | | |
go build -buildmode=plugin -o typegroupingcheck.so | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
skip-cache: true | |
version: latest | |
install-mode: goinstall | |
args: --timeout=10m --enable typegroupingcheck |