Skip to content

#5: Fix INSTALL.md

#5: Fix INSTALL.md #3

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Build File
run: mkdir build
- name: Going to Build File
run: cd build
- name: Running Cmake
run: cmake
- name: make
run: make
- name: make test
run: make test