CI #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install zcashd | |
run: | | |
sudo apt-get update && sudo apt-get install apt-transport-https wget gnupg2 | |
wget -qO - https://apt.z.cash/zcash.asc | gpg --import | |
gpg --export B1C9095EAA1848DBB54D9DDA1D05FDC66B372CFE | sudo tee /etc/apt/trusted.gpg.d/zcash.gpg >/dev/null | |
echo "deb [arch=amd64 trusted=yes] https://apt.z.cash/ stable main" | sudo tee /etc/apt/sources.list.d/zcash.list | |
sudo apt-get update && sudo apt-get install zcash | |
- name: Setup upterm session | |
uses: lhotari/action-upterm@v1 |