From fae3605aae49261d94c82c38723c126c156f52ef Mon Sep 17 00:00:00 2001 From: Timofey Koolin Date: Tue, 8 Apr 2025 19:51:52 +0300 Subject: [PATCH] Show ydb version --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c530e0f9..8a752c1b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: - /tmp/ydb_certs:/ydb_certs env: YDB_USE_IN_MEMORY_PDISKS: true - options: '-h localhost' + options: '-h localhost --name ydb' runs-on: ubuntu-latest strategy: fail-fast: false @@ -29,6 +29,9 @@ jobs: php-versions: [ '7.2', '7.4', '8.0', '8.2' ] ydb-versions: ['stable-22-5', 'trunk', '23.3', '23.2', '23.1'] steps: + - name: Show YDB version + run: docker exec ydb /ydbd -V + - uses: actions/checkout@v3 name: Checkout