From c51d171d5d452e0553ad43b8451417c9921827ce Mon Sep 17 00:00:00 2001 From: Vitaly the Alpaca Date: Sun, 5 May 2024 09:34:46 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20yml=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0=20-?= =?UTF-8?q?=20cli=5Ftest.yml=20(workflow)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cli_test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/cli_test.yml b/.github/workflows/cli_test.yml index 0d433331e1..bcc7d75c4e 100644 --- a/.github/workflows/cli_test.yml +++ b/.github/workflows/cli_test.yml @@ -2687,6 +2687,33 @@ jobs: --comment "" \ + Testing-gsheets: + runs-on: ubuntu-latest + needs: [Decode, Build] + steps: + + - name: Получить тестовые данные из кэша + uses: actions/cache/restore@v3 + with: + path: ./data.json + key: test-data + + - name: Скачать артефакт с исполняемым файлом + uses: actions/download-artifact@v4 + with: + name: oint + + - name: JSON в переменные + uses: rgarcia-phi/json-to-variables@v1.1.0 + with: + filename: 'data.json' + masked: true + + - name: chmod для OInt + run: chmod +x ./oint + + + Clear-Cache: runs-on: ubuntu-latest needs: [Testing-telegram, Testing-vk, Testing-viber]