diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 740867d6..83c31b35 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -102,35 +102,35 @@ jobs: make test-integration if: env.GIT_DIFF - 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 - signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" - - uses: technote-space/get-diff-action@v6.1.1 - with: - PATTERNS: | - **/**.sol - **/**.go - go.mod - go.sum - tests/integration_tests/** - - name: Run integration tests - run: make run-integration-tests - if: env.GIT_DIFF - - name: 'Tar debug files' - if: failure() - run: tar cfz debug_files.tar.gz -C /tmp/pytest-of-runner . - - uses: actions/upload-artifact@v3 - if: failure() - with: - name: debug-files - path: debug_files.tar.gz - if-no-files-found: ignore + # 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 + # signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" + # - uses: technote-space/get-diff-action@v6.1.1 + # with: + # PATTERNS: | + # **/**.sol + # **/**.go + # go.mod + # go.sum + # tests/integration_tests/** + # - name: Run integration tests + # run: make run-integration-tests + # if: env.GIT_DIFF + # - name: 'Tar debug files' + # if: failure() + # run: tar cfz debug_files.tar.gz -C /tmp/pytest-of-runner . + # - uses: actions/upload-artifact@v3 + # if: failure() + # with: + # name: debug-files + # path: debug_files.tar.gz + # if-no-files-found: ignore upload-cache: if: github.event_name == 'push' diff --git a/x/auction/module.go b/x/auction/module.go index 4f9b0a4f..7ebc874c 100644 --- a/x/auction/module.go +++ b/x/auction/module.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" "fmt" - "math/rand" + "math/rand" // #nosec G702 "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" diff --git a/x/bond/module.go b/x/bond/module.go index f8484c37..68ec0a36 100644 --- a/x/bond/module.go +++ b/x/bond/module.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" "fmt" - "math/rand" + "math/rand" // #nosec G702 "github.com/cerc-io/laconicd/x/bond/client/cli" "github.com/cerc-io/laconicd/x/bond/keeper" diff --git a/x/nameservice/module.go b/x/nameservice/module.go index f1af90c5..9ba44a21 100644 --- a/x/nameservice/module.go +++ b/x/nameservice/module.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" "fmt" - "math/rand" + "math/rand" // #nosec G702 "github.com/cerc-io/laconicd/x/nameservice/client/cli" "github.com/cerc-io/laconicd/x/nameservice/keeper" @@ -94,7 +94,6 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw func (AppModule) GenerateGenesisState(simState *module.SimulationState) { simulation.RandomizedGenState(simState) - } // WeightedOperations returns the all the fee market module operations with their respective weights.