Skip to content

Make CI workflow to build C++ code working #143

Make CI workflow to build C++ code working

Make CI workflow to build C++ code working #143

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install build dependencies
run: sudo apt install -y libyaml-cpp-dev libasound2-dev libv4l-dev libudev-dev make g++
- name: Build
run: make
working-directory: Capture/C++