Skip to content

feat: handle genesis creator archive #500

feat: handle genesis creator archive

feat: handle genesis creator archive #500

Workflow file for this run

name: Linters
on:
push:
tags:
- v*
branches:
- main
paths:
- '**/*.go'
- go.mod
- go.sum
pull_request:
paths:
- '**/*.go'
- go.mod
- go.sum
jobs:
golangci-lint:
name: lint
runs-on: ubuntu-latest
env:
GOPRIVATE: "github.com/dymensionxyz/*"
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}"
steps:
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.59.1
only-new-issues: true