This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
Integrate new contracts (#35) #173
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: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- 'v*' | |
paths: | |
- '**.go' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
workflow_call: {} | |
workflow_dispatch: {} | |
jobs: | |
golangci_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout 10m --verbose |