This commit is contained in:
Vladimir 2025-01-25 04:53:56 +00:00 committed by GitHub
commit 6a947c341a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

17
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: update
run: sudo apt update && sudo apt-get install libasound2-dev
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Werror" ..
- name: build
run: cmake --build build