(chore): add a comment for secp256k1 sign function #50
Workflow file for this run
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: | |
push: | |
branches: | |
- develop | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install -y libsecp256k1-dev | |
- uses: dlang-community/setup-dlang@v2 | |
with: | |
compiler: ldc | |
- name: Install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Run test | |
run: | | |
./ci-test.sh | |