Skip to content

build cicd workflow #12

build cicd workflow

build cicd workflow #12

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Project
run: |
sudo apt-get -y install cmake
cmake .
make