Skip to content

Comment out settings that are null by default. #5

Comment out settings that are null by default.

Comment out settings that are null by default. #5

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Run apt update
run: sudo apt update
- name: Install LibYAML dependencies
run: sudo apt install -y autoconf libtool
- name: Make project
run: sudo make
- name: Install project
run: sudo make install