Updated to Monocypher-Cpp 1.2 #48
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+Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build and test | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] # TODO: Restore windows-latest (how to install libsodium?) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get Package | |
uses: mstksg/get-package@v1 | |
with: | |
brew: libsodium | |
apt-get: libsodium-dev | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: checkout submodules | |
run: git submodule update --init --recursive | |
- name: build and test | |
run: ./build_and_test.sh | |
shell: bash |