diff --git a/.github/workflows/dagger.yaml b/.github/workflows/dagger.yaml index f3267a0..8edd669 100644 --- a/.github/workflows/dagger.yaml +++ b/.github/workflows/dagger.yaml @@ -9,10 +9,9 @@ jobs: supernova: name: supernova-ci runs-on: ubuntu-latest - # runs-on: [ self-hosted, Linux, X64, dagger ] strategy: matrix: - env: [PACKAGE_DEPLOYMENT, REALM_DEPLOYMENT, REALM_CALL] + env: [PACKAGE_DEPLOYMENT] # TODO: REALM_DEPLOYMENT, REALM_CALL max-parallel: 1 steps: @@ -34,4 +33,4 @@ jobs: version: ${{ steps.dagger_version.outputs.version }} verb: call module: ci/dagger/run-supernova/ - args: run-stress-test --src-dir . --chain-id ${CHAIN_ID} --rpc-endpoint ${RPC_URL} --mode ${{ matrix.env }} --sub-accounts 2 --transactions 100 + args: run-stress-test --src-dir . --chain-id ${CHAIN_ID} --rpc-endpoint ${RPC_URL} --mode ${{ matrix.env }} --sub-accounts 2 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 944e17d..2fdbb2f 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v5 - name: Lint - uses: golangci/golangci-lint-action@v6 + uses: golangci/golangci-lint-action@v8 with: - version: v1.64 + version: v2.1 args: --timeout=5m diff --git a/internal/collector/collector.go b/internal/collector/collector.go index acd1fab..83adaec 100644 --- a/internal/collector/collector.go +++ b/internal/collector/collector.go @@ -53,6 +53,7 @@ func (c *Collector) GetRunResult( for { // Check if all original transactions // were processed + //nolint:staticcheck if processed >= len(txHashes) { break }