Skip to content

Update delay.cpp

Update delay.cpp #43

Workflow file for this run

name: Docker Image CI and CMake Checks
on:
pull_request:
branches: [ "main" ]
jobs:
build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker image pull karlkorv/beamformer:latest
- name: Run cmake in the Docker image
run: docker run --rm -w /usr/src/app karlkorv/beamformer:latest /bin/bash -c "cmake -S . -B /build && cmake --build /build"