Skip to content

Updated to latest crouton API #47

Updated to latest crouton API

Updated to latest crouton API #47

Workflow file for this run

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