Skip to content

Add files via upload #97

Add files via upload

Add files via upload #97

Workflow file for this run

name: Docker Image CI and CMake Checks
on:
pull_request:
branches: [ "main" ]
jobs:
build-image:
runs-on: ubuntu-latest
container:
image: karlkorv/beamformer:latest
options: --user root
steps:
- uses: actions/checkout@v4
- name: Ensure dependencies are installed
run: |
apt-get update
apt-get install -y cmake
- name: Run cmake in the Docker image
run: |
cmake -S . -B /build
cmake --build /build