We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2779651 + b5bd42f commit 00cadcfCopy full SHA for 00cadcf
.github/workflows/ci.yml
@@ -3,6 +3,20 @@ jobs:
3
build:
4
runs-on: ubuntu-latest
5
steps:
6
- - uses: actions/checkout@v4
+ - name: Checkout repository
7
+ uses: actions/checkout@v4
8
- name: Run ShellCheck
9
uses: ludeeus/action-shellcheck@master
10
+ - name: Checkout submodules
11
+ run: git submodule update --init --recursive
12
+ - name: Install mkp224o
13
+ run: |
14
+ sudo apt install gcc libc6-dev libsodium-dev make autoconf
15
+ git clone https://github.com/cathugger/mkp224o
16
+ cd mkp224o
17
+ ./autogen.sh
18
+ ./configure
19
+ make
20
+ sudo cp mkp224o /usr/local/bin
21
+ - name: Run unit tests
22
+ run: ./test/bats/bin/bats ./test/test-finalize-nakamochi.bats
0 commit comments