Skip to content

Updated to latest Monocypher (4.0.2 + fixes) #50

Updated to latest Monocypher (4.0.2 + fixes)

Updated to latest Monocypher (4.0.2 + fixes) #50

Workflow file for this run

name: Build+Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- 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