Merge branch 'master' of https://github.com/ReproNim/reprostim #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++ | |
- name: Dry run of -h | |
run: ./VideoCapture -h | |
working-directory: Capture/C++ |