Skip to content

Bump actions/upload-artifact from 4.3.3 to 4.4.0 #635

Bump actions/upload-artifact from 4.3.3 to 4.4.0

Bump actions/upload-artifact from 4.3.3 to 4.4.0 #635

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Install Go
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
with:
test_download_vendor_packages_command: go mod download
go_mod_path: ./go.mod
cache_key_id: ctf-go
cache_restore_only: 'false'
- name: Install gotestloghelper
run: make gotestloghelper_build
- name: Run Tests
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@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: test-logs
path: ./logs