Basic support for testnet3 (WIP) #12
Workflow file for this run
This file contains hidden or 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
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Install mkp224o | |
run: | | |
sudo apt install gcc libc6-dev libsodium-dev make autoconf | |
git clone https://github.com/cathugger/mkp224o | |
cd mkp224o | |
./autogen.sh | |
./configure | |
make | |
sudo cp mkp224o /usr/local/bin | |
- name: Run unit tests | |
run: ./test/bats/bin/bats ./test/test-finalize-nakamochi.bats |