Skip to content

[#641]Run all tests in Docker containers #3

[#641]Run all tests in Docker containers

[#641]Run all tests in Docker containers #3

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: [self-hosted, Linux, X64, nix-with-docker]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up install tezos-client and install it
run: |
docker run --rm -it ubuntu:latest /bin/bash -c '
apt update -y
apt install -y software-properties-common
apt update -y
add-apt-repository -y ppa:serokell/tezos
apt-get update -y
apt-get install tezos-client -y
tezos-client --version
'