EVM key store on top of common key store lib #1438
Workflow file for this run
This file contains hidden or 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: Run golangci-lint | |
| on: [pull_request] | |
| jobs: | |
| golangci-lint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Setup tar default options | |
| shell: bash | |
| # Do not overwrite existing files when extracting files from a cache archive. | |
| # Since actions/cache does not support this option, we set it here as a default. | |
| run: echo "TAR_OPTIONS=--skip-old-files" >> $GITHUB_ENV | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| cache-dependency-path: go.sum | |
| go-version-file: go.mod | |
| - name: Run golangci-lint | |
| uses: smartcontractkit/.github/actions/ci-lint-go@bd2ca3d8fa2dc89f98b49b297e9b72c2e3e68cdc # v3.1.0 | |
| with: | |
| golangci-lint-version: v2.6.1 | |
| only-new-issues: true | |
| working-directory: pkg | |
| # - name: Run golangci-lint | |
| # if: ${{ always() && !contains(join(github.event.pull_request.labels.*.name, ' '), 'allow-lint-issues') }} | |
| # # v7.0.0 | |
| # uses: golangci/golangci-lint-action@7119f3d5ddced62a10a044847a6c6bb0f7a5e76a | |
| # with: | |
| # args: --config=${{ github.workspace }}/.golangci.yml | |
| # only-new-issues: true | |
| # version: v2.4.0 | |
| # working-directory: pkg |