forked from cerc-io/laconicd-deprecated
ccbaf1fe05
* first pass * extra comment * fixed pruned node tests. Fix getBalance on pruned. Fix BaseFee on pruned. * fix tests execution * check logs on tests * address pr comments * address comments * Update rpc/namespaces/ethereum/eth/api.go * update error msg check * fix lint * fix linter * fix linter * fix py lint * test lint * fix lint * pin golangcli version * pin golanci version * pin lint to version 0.48 * fix linter * fix last linter last file Co-authored-by: ramacarlucho <ramirocarlucho@gmail.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
77 lines
2.2 KiB
YAML
77 lines
2.2 KiB
YAML
name: Lint
|
|
# Lint runs golangci-lint over the entire ethermint 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:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6.1.0
|
|
with:
|
|
PATTERNS: |
|
|
**/**.go
|
|
go.mod
|
|
go.sum
|
|
- uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: v1.48.0
|
|
args: --timeout 10m
|
|
github-token: ${{ secrets.github_token }}
|
|
# Check only if there are differences in the source code
|
|
if: "env.GIT_DIFF"
|
|
markdown-lint:
|
|
name: Run markdown-lint
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6.1.0
|
|
with:
|
|
PATTERNS: |
|
|
docs/**/*.md
|
|
x/**/*.md
|
|
README.md
|
|
- uses: articulate/actions-markdownlint@v1.1.0
|
|
# Check only if there are differences in the source code
|
|
if: env.GIT_DIFF
|
|
python-lint:
|
|
name: Run flake8 on python integration tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: cachix/install-nix-action@v15
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: ethermint
|
|
- uses: technote-space/get-diff-action@v6.1.0
|
|
with:
|
|
PATTERNS: |
|
|
**/**.py
|
|
- run: |
|
|
nix-shell -I nixpkgs=./nix -p test-env --run "make lint-py"
|
|
if: env.GIT_DIFF
|
|
gomod2nix:
|
|
name: Check gomod2nix.toml file is up to date
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- uses: cachix/install-nix-action@v15
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: ethermint
|
|
- name: run gomod2nix
|
|
run: |
|
|
nix run -f ./nix gomod2nix
|
|
git diff --no-ext-diff --exit-code
|