This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
Merge pull request #61 from noislabs/upgrade-wasmvm-1.2.5 #203
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: | |
jobs: | |
golangci: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: golangci/golangci-lint-action@v2 | |
with: | |
version: latest | |
args: --timeout 10m --tests=false --skip-dirs="testing" | |
github-token: ${{ secrets.github_token }} |