Expose the ed25519 API #56
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
otp_vsn: | |
- "24.3" | |
- "25.3" | |
- "26.2" | |
os: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp_vsn}} | |
rebar3-version: 3.16.1 | |
- name: Update apt-get database | |
run: sudo apt-get update | |
- name: Install libsodium | |
run: sudo apt-get install -y libsodium-dev | |
- name: Compile source code | |
run: make compile | |
- name: Run the tests | |
run: make tests |