forked from cerc-io/laconicd-deprecated
0b294b74bc
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 15 to 17. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v15...v17) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@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@v17
|
|
- 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@v17
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: ethermint
|
|
- name: run gomod2nix
|
|
run: |
|
|
nix run -f ./nix gomod2nix
|
|
git diff --no-ext-diff --exit-code
|