Prathamesh Musale
d36f54543d
Some checks failed
Build / build (pull_request) Successful in 1m58s
Protobuf / lint (pull_request) Successful in 13s
Integration Tests / test-integration (pull_request) Successful in 2m33s
E2E Tests / test-e2e (pull_request) Successful in 3m56s
Lint / Run golangci-lint (pull_request) Failing after 9m57s
Unit Tests / test-unit (pull_request) Successful in 1m50s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 8m13s
SDK Tests / sdk_tests (pull_request) Failing after 8m58s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 13m53s
28 lines
867 B
YAML
28 lines
867 B
YAML
name: Lint
|
|
# Lint runs golangci-lint over the entire repository This workflow is
|
|
# run on every pull request and push to main The `golangci` will pass without
|
|
# running if no *.{go, mod, sum} files have been changed.
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
golangci:
|
|
name: Run golangci-lint
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
# Required: setup-go, for all versions v3.0.0+ of golangci-lint
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.21
|
|
check-latest: true
|
|
- uses: actions/checkout@v3
|
|
- uses: golangci/golangci-lint-action@v3.3.1
|
|
with:
|
|
# Required: the version of golangci-lint is required and must be specified without patch version
|
|
version: v1.51
|
|
args: --timeout 10m
|
|
github-token: ${{ secrets.github_token }}
|