Skip to content

Commit

Permalink
[#634] Add tezos-client test
Browse files Browse the repository at this point in the history
  • Loading branch information
PruStephan committed Jul 17, 2023
1 parent 33a3423 commit 2350bbe
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-ubuntu-binaries.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2350bbe

Please sign in to comment.