From 2350bbe5bed85195fc0f0e9f52dba697d776afbe Mon Sep 17 00:00:00 2001 From: PruStephan Date: Mon, 17 Jul 2023 10:23:18 +0200 Subject: [PATCH] [#634] Add tezos-client test --- .github/workflows/test-ubuntu-binaries.yml | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test-ubuntu-binaries.yml diff --git a/.github/workflows/test-ubuntu-binaries.yml b/.github/workflows/test-ubuntu-binaries.yml new file mode 100644 index 000000000..6281e5830 --- /dev/null +++ b/.github/workflows/test-ubuntu-binaries.yml @@ -0,0 +1,26 @@ +name: Test Ubuntu binaries + +on: + schedule: + - cron: "0 0 * * *" + push: + branches: + - PruStephan/Add_tests_for_packages + +jobs: + run_script: + name: Install and test binaries + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Tezos repository and install tezos-client + run: | + sudo add-apt-repository ppa:serokell/tezos + sudo apt-get update + sudo apt-get install tezos-client + + - name: Test tezos-client works + run: | + sudo tezos-client --version \ No newline at end of file