279 voting power is not synced properly on start of epoch (#76) #461
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: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.x | |
- name: Lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout 10m --verbose | |
version: v1.61 |