Skip to content

Bump k8s.io/client-go from 0.31.2 to 0.31.3 in /lib #1119

Bump k8s.io/client-go from 0.31.2 to 0.31.3 in /lib

Bump k8s.io/client-go from 0.31.2 to 0.31.3 in /lib #1119

Workflow file for this run

name: (all packages) Docker Test Env tests
on:
pull_request_review:
types: [submitted]
pull_request:
types: [labeled]
jobs:
eth_env:
if: ${{ github.event_name == 'pull_request_review' || github.event.label.name == 'docker_tests' }}
runs-on: ubuntu-latest
name: Docker Test ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: eth_env
tests: TestEthEnv
- name: eth_clients
tests: TestBesu|TestGeth|TestNethermind|TestErigon
- name: other
tests: TestPostgres|TestMockServer|TestKillgrave
steps:
- name: Checkout the Repo
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Install Go
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
with:
test_download_vendor_packages_command: cd lib && go mod download
go_mod_path: ./lib/go.mod
cache_key_id: ctf-go
cache_restore_only: 'false'
- name: Install gotestloghelper
working-directory: lib
run: make gotestloghelper_build
- name: Run Tests
working-directory: lib
run: |
PATH=$PATH:$(go env GOPATH)/bin
export PATH
set -euo pipefail
# disabled, because we want to use a multiline output of go list command
# shellcheck disable=SC2046
go test -timeout 20m -json -parallel 2 -cover -covermode=atomic -coverprofile=unit-test-coverage.out $(go list ./... | grep /docker/test_env) -run '${{ matrix.test.tests }}' 2>&1 | tee /tmp/gotest.log | ../gotestloghelper -ci
- name: Publish Artifacts
if: failure()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: test-logs
path: ./lib/logs