This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
build(deps): bump @openzeppelin/contracts from 4.7.3 to 4.9.6 in /tests/integration_tests/contracts #179
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 | |
# 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/[email protected] | |
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/[email protected] | |
with: | |
PATTERNS: | | |
docs/**/*.md | |
x/**/*.md | |
README.md | |
- uses: articulate/[email protected] | |
# 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@v18 | |
- uses: cachix/cachix-action@v11 | |
with: | |
name: ethermint | |
- uses: technote-space/[email protected] | |
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/[email protected] | |
- uses: cachix/install-nix-action@v18 | |
- uses: cachix/cachix-action@v11 | |
with: | |
name: ethermint | |
- name: run gomod2nix | |
run: | | |
nix run -f ./nix gomod2nix | |
git diff --no-ext-diff --exit-code |