fix receiver #18
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: Build and test project | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: install dependencies | |
run: sudo apt-get update && sudo apt-get -y install cmake libopencv-dev libspdlog-dev libargparse-dev libcpp-httplib-dev | |
- uses: actions/cache@v4 | |
with: | |
path: build | |
key: cmake | |
- uses: actions/[email protected] | |
with: | |
submodules: recursive | |
- name: build | |
run: cmake -B build && cmake --build build -j4 | |
env: | |
CXX: g++-13 | |
- name: test | |
run: ctest --test-dir build |