Multiple KeyPair support in didDocument , Service type restriction removed #159
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: Lint | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: Golang Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Perform Lint Operation | |
uses: golangci/golangci-lint-action@v2 | |
with: | |
args: --timeout 10m | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest |