diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index d7f65d40..98922a15 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -19,7 +19,7 @@ jobs: if: (github.actor != 'dependabot[bot]') steps: - name: Permission issue fix - run: git config --global --add safe.directory /__w/ethermint/ethermint + run: git config --global --add safe.directory /__w/laconicd/laconicd - uses: actions/checkout@v3 - name: Get Diff uses: technote-space/get-diff-action@v6.1.2 diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml deleted file mode 100644 index 37cf5b91..00000000 --- a/.github/workflows/super-linter.yml +++ /dev/null @@ -1,38 +0,0 @@ -# This workflow executes several linters on changed files based on languages used in your code base whenever -# you push a code or open a pull request. -# -# You can adjust the behavior by modifying this file. -# For more information, see: -# https://github.com/github/super-linter ---- -name: Lint Code Base - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] -jobs: - run-lint: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - # Full git history is needed to get a proper list of changed files within `super-linter` - fetch-depth: 0 - - - name: Lint Code Base - uses: github/super-linter@v4 - env: - LINTER_RULES_PATH: / - YAML_CONFIG_FILE: .yamllint - VALIDATE_ALL_CODEBASE: false - MARKDOWN_CONFIG_FILE: .markdownlint.yml - PROTOBUF_CONFIG_FILE: .protolint.yml - VALIDATE_NATURAL_LANGUAGE: false - VALIDATE_OPENAPI: false - VALIDATE_JSCPD: false - VALIDATE_GO: false - DEFAULT_BRANCH: "main" - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/tests/integration_tests/test_filters.py b/tests/integration_tests/test_filters.py index e1c5e268..b20f807e 100644 --- a/tests/integration_tests/test_filters.py +++ b/tests/integration_tests/test_filters.py @@ -670,8 +670,7 @@ def assert_change_greet_log_data(log, new_greeting): types = ["address", "string"] names = ["from", "value"] values = abi.decode_abi(types, log["data"]) - log_data = dict(zip(names, values)// Start the GQL Server - go gql.Server(clientCtx)) + log_data = dict(zip(names, values)) # the address stored in the data field may defer on lower/upper case characters # then, set all as lowercase for assertion